Skip to main content
POST
/
api
/
openaire
/
projects
/openaire/projects
curl --request POST \
  --url https://api.anysite.io/api/openaire/projects \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "id": "<string>",
  "timeout": 300
}
'
[
  {
    "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
id
string
required

OpenAIRE project id

Minimum string length: 1
Example:

"ukri________::03e581040f91e2f527f88d20d9dbdb80"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

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[]