Skip to main content
POST
/
api
/
openaire
/
organizations
/openaire/organizations
curl --request POST \
  --url https://api.anysite.io/api/openaire/organizations \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "id": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@openaire_organization",
    "legal_name": "<string>",
    "legal_short_name": "<string>",
    "alternative_names": [],
    "country": {
      "@type": "@openaire_country",
      "code": "<string>",
      "label": "<string>"
    },
    "pids": [],
    "website_url": "<string>",
    "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 organization id

Minimum string length: 1
Example:

"pending_org_::6980a81cd5a137584a9da6de58751470"

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_organization
alternative_names
string[]
country
OpenaireCountry · object
pids
OpenairePid · object[]
website_url
string | null
original_ids
string[]