Skip to main content
POST
/
api
/
openaire
/
projects
/
search
/openaire/projects/search
curl --request POST \
  --url https://api.anysite.io/api/openaire/projects/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "search": "<string>",
  "funding_stream_id": "EC",
  "relevant_funder": "<string>",
  "rel_organization_id": "<string>",
  "from_start_date": "2020-01-01",
  "to_end_date": "2024-12-31",
  "keywords": "<string>"
}
'
[
  {
    "id": "<string>",
    "@type": "@openaire_project",
    "code": "<string>",
    "acronym": "<string>",
    "title": "<string>",
    "summary": "<string>",
    "start_date": "<string>",
    "end_date": "<string>",
    "call_identifier": "<string>",
    "keywords": "<string>",
    "website_url": "<string>",
    "subjects": [],
    "granted": {
      "@type": "@openaire_grant",
      "currency": "<string>",
      "total_cost": 123,
      "funded_amount": 123
    },
    "fundings": [],
    "h2020_programmes": [],
    "open_access_mandate_for_publications": true,
    "open_access_mandate_for_dataset": true,
    "original_ids": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of projects to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
search
string | null

Full-text query over project titles and summaries

funding_stream_id
string | null

Restrict to a funding-stream id

Example:

"EC"

relevant_funder
string | null

Restrict to a funder

rel_organization_id
string | null

Only projects linked to this OpenAIRE organization id

from_start_date
string | null

Earliest project start date, YYYY-MM-DD

Example:

"2020-01-01"

to_end_date
string | null

Latest project end date, YYYY-MM-DD

Example:

"2024-12-31"

keywords
string | null

Filter by project keywords

sort_by
enum<string> | null

Sort order of the results

Available options:
relevance_asc,
relevance_desc,
start_date_asc,
start_date_desc,
end_date_asc,
end_date_desc

Response

Successful Response

id
string
required
@type
string
default:@openaire_project
code
string | null
acronym
string | null
title
string | null
summary
string | null
start_date
string | null
end_date
string | null
call_identifier
string | null
keywords
string | null
website_url
string | null
subjects
string[]
granted
OpenaireGrant · object
fundings
OpenaireFunding · object[]
h2020_programmes
string[]
open_access_mandate_for_publications
boolean | null
open_access_mandate_for_dataset
boolean | null
original_ids
string[]