Sparse fieldsets (select)
The select parameter lets you request only the fields you need, reducing response size and improving readability.
/v4/organizations?filter=country:GR&select=id,legalName,country
Field names match the actual JSON property names in the response. Dotted sub-paths of a listed field are also accepted.
Selectable response fields
| Field | Type | Description |
|---|---|---|
id | string | OpenAIRE identifier |
pids | array | Persistent identifiers (e.g. ROR, ISNI) |
originalIds | array | Identifiers at original sources |
legalName | string | Legal name of the organization |
legalShortName | string | Legal name in short form |
alternativeNames | array | Alternative names |
websiteUrl | string | Organization website |
country | object | Country (code and label) |
fundings | array | Funding information |
collectedFrom | array | Sources from which the record was collected |
Examples
Only IDs and legal names:
/v4/organizations?filter=country:GR&select=id,legalName
Names with website and country:
/v4/organizations?search=university&select=id,legalName,legalShortName,websiteUrl,country