> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blockworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Funding Rounds

> Funding rounds raised by crypto projects and companies, the investors in each round, and the amount raised per sector over time.

The two tables are keyed by round and by round-investor pair; the sector series is keyed by sector name.

## Endpoints

| Model                                                                                     | Access               | Table                                                                                                                                                                        | Timeseries                                                                                                                                                              |
| ----------------------------------------------------------------------------------------- | -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [Funding Rounds](/api-reference/data-api/funding-rounds/funding-rounds)                   | Fundraising\_unified | [List rows](/api-reference/data-api/funding-rounds/tabular-funding-rounds), [One row](/api-reference/data-api/funding-rounds/tabular-funding-rounds-by-id)                   |                                                                                                                                                                         |
| [Sector Fundraising](/api-reference/data-api/funding-rounds/sector-fundraising)           | Fundraising\_unified |                                                                                                                                                                              | [Batch](/api-reference/data-api/funding-rounds/timeseries-sector-fundraising), [One series](/api-reference/data-api/funding-rounds/timeseries-sector-fundraising-by-id) |
| [Funding Round Investors](/api-reference/data-api/funding-rounds/funding-round-investors) | Fundraising\_unified | [List rows](/api-reference/data-api/funding-rounds/tabular-funding-round-investors), [One row](/api-reference/data-api/funding-rounds/tabular-funding-round-investors-by-id) |                                                                                                                                                                         |

## Example

```bash curl theme={null}
curl "https://api.blockworks.com/query/tabular/funding-rounds?pageSize=3&selections=fundingRoundID,announcementDate,fundingDate,type" \
  -H "X-Blockworks-API-Key: $BLOCKWORKS_API_KEY"
```

See [List Funding Rounds](/api-reference/data-api/funding-rounds/tabular-funding-rounds) for the response and the errors.

## Guides

<CardGroup cols={2}>
  <Card title="Finding an id" icon="key" href="/api-reference/data-api/discovery/finding-an-id">
    Every series key, the table it comes from and the identifiers that resolve to it.
  </Card>

  <Card title="Granularity" icon="clock" href="/getting-started/concepts/granularity">
    Choosing an interval and bounding a time window.
  </Card>

  <Card title="Filtering and pagination" icon="filter" href="/getting-started/filtering-pagination">
    Filter suffixes, sorting, column selection and paging.
  </Card>

  <Card title="Tabular vs timeseries" icon="book" href="/getting-started/concepts/tabular-vs-timeseries">
    The two model kinds, their URL shapes, and when to reach for each.
  </Card>
</CardGroup>
