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

Max number of organizations 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 organization names

country_code
string | null

Two-letter ISO country code of the organization

Example:

"GB"

rel_project_id
string | null

Only organizations linked to this OpenAIRE project id

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