Projects
Search and retrieve funded research project grants.
Base URL
https://api.openaire.eu/graph/v3/projects
Quick start
Get projects funded by the EC that started in 2023 or later:
/v3/projects?fundingShortName=EC&fromStartYear=2023
Retrieve a single project by its OpenAIRE id:
/v3/projects/100007490___::1e5e62235d094afd01cd56e65112fc63
Endpoints
GET /v3/projects— search projects using the filter parametersGET /v3/projects/{id}— retrieve a single project by its OpenAIRE id
Meta-parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
search | string | — | Keyword-based search across the project's content |
logicalOperator | string | AND | Top-level operator combining the provided filters (AND or OR) |
sortBy | string | relevance DESC | Sort directive fieldname ASC\|DESC (see sorting) |
page | int | 1 | Page number (see paging) |
pageSize | int | 10 | Results per page, range 1–100 |
cursor | string | — | Cursor-based pagination, initial value * (see cursor paging) |
Response
The response is an object with a header and a results array. The header reports numFound, maxScore, queryTime, page, pageSize, and (for cursor paging) nextCursor. The results array contains Project objects.
{
"header": {
"numFound": 3500000,
"maxScore": 1,
"queryTime": 20,
"page": 1,
"pageSize": 10
},
"results": [ ... ]
}