> ## 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.

# Sector Fundraising

> Amount raised in USD and number of funding rounds announced per period, by sector. Each series is one sector, keyed by its name. A day without announced rounds has no point.

|                  |                                                                                                               |
| ---------------- | ------------------------------------------------------------------------------------------------------------- |
| Access           | Fundraising\_unified                                                                                          |
| Timeseries model | `sector-fundraising`: intervals `1d`, `1n`, series key `sector` (Sectors), every series available in one call |

## Endpoints

<CardGroup cols={2}>
  <Card title="Batch Get Sector timeseries" icon="arrow-right" href="/api-reference/data-api/funding-rounds/timeseries-sector-fundraising">
    Every series in one request, or the named ones.
  </Card>

  <Card title="Get Sector timeseries" icon="arrow-right" href="/api-reference/data-api/funding-rounds/timeseries-sector-fundraising-by-id">
    One series over a time window, keyed by its Sectors.
  </Card>
</CardGroup>

## Metrics

2 metrics. Use the `Field` value in `selections`; every point starts with the timestamp and continues in this order.

| Field                 | Name                | Type    | Unit | Description                                                                       |
| --------------------- | ------------------- | ------- | ---- | --------------------------------------------------------------------------------- |
| `raised-amount-usd`   | Raised Amount (USD) | float64 | usd  | Total amount raised in USD for all fundraising events in this sector on this day. |
| `funding-round-count` | Funding Round Count | int32   |      | Number of fundraising rounds in this sector on this day.                          |

## Example

```bash curl theme={null}
curl "https://api.blockworks.com/query/timeseries/sector-fundraising/1d/AI?timeframe=7d&selections=raised-amount-usd,funding-round-count" \
  -H "X-Blockworks-API-Key: $BLOCKWORKS_API_KEY"
```

See [Get Sector timeseries](/api-reference/data-api/funding-rounds/timeseries-sector-fundraising-by-id) for the response and the errors.
