Grants
Grant indicators track project activity and time-weighted capital exposure across your selected period.
Grant indicators are available through:
POST /indicators/grants/proofpointsPOST /indicators/grants/time-series
What Is Different About Grants
Grants use project intervals (start_date, end_date) rather than publication dates.
- Use
interval_overlapinqueryto filter projects by date overlap. - For time series, provide
startandendto define the chart window. time-seriesreturns both project counts andamount(capital exposure) per bucket.
Typical Questions
- Which grants are active in this topic and period?
- Is active project volume increasing or declining across the chosen window?
- How much total project capital is exposed month-by-month?
Request Patterns
Proofpoints
Use the same nested query style as other document indicators, but with interval_overlap for project dates.
{
"query": {
"type": "and",
"clauses": [
{
"type": "query",
"query": "battery recycling"
},
{
"type": "interval_overlap",
"start": "2022-01-01",
"end": "2024-12-31"
}
]
},
"take": 25,
"skip": 0,
"sortColumn": "published_at",
"sortDirection": "desc"
}Time Series
start and end define bucket generation for the output series.
{
"resolution": "month",
"start": "2022-01-01",
"end": "2024-12-31",
"query": {
"type": "interval_overlap",
"start": "2022-01-01",
"end": "2024-12-31"
}
}Response Notes
labels: bucket labels at the selected resolution.counts: number of active overlapping projects in each bucket.amount: rounded, time-weighted capital exposure per bucket.- Uses project
total_cost. - Falls back to
cordis_ec_contributionwhentotal_costis missing or0.
- Uses project
Validation Notes
DateFilteris not supported for grants. Useinterval_overlapinstead.startmust be on or beforeend.- Score-weighted time series options are not supported on grant time series.