Skip to main content
Version: 11.2.0

Organizations

Search and retrieve organizations — universities, research organizations, funders, and companies.

Base URL

https://api.openaire.eu/graph/v3/organizations

Quick start

Get the organization with the ROR id https://ror.org/0576by029:

/v3/organizations?pid=https://ror.org/0576by029

Retrieve a single organization by its OpenAIRE id:

/v3/organizations/anr_________::1bb745121fc1c70e1e5b3fbe20a06bf8

Endpoints

  • GET /v3/organizations — search organizations using the filter parameters
  • GET /v3/organizations/{id} — retrieve a single organization by its OpenAIRE id

Meta-parameters

ParameterTypeDefaultDescription
searchstringKeyword-based search across the organization's content
logicalOperatorstringANDTop-level operator combining the provided filters (AND or OR)
sortBystringrelevance DESCSort directive fieldname ASC\|DESC (see sorting)
pageint1Page number (see paging)
pageSizeint10Results per page, range 1–100
cursorstringCursor-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 Organization objects.

{
"header": {
"numFound": 184213,
"maxScore": 1,
"queryTime": 18,
"page": 1,
"pageSize": 10
},
"results": [ ... ]
}

Learn more

  • Filtering — all available filter parameters and logical operators
  • Sorting — sort fields and direction
  • Paging — offset and cursor pagination
  • Examples — ready-to-use API calls for every parameter