Skip to main content
Version: 11.2.0

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

FieldTypeDescription
idstringOpenAIRE identifier
pidsarrayPersistent identifiers (e.g. ROR, ISNI)
originalIdsarrayIdentifiers at original sources
legalNamestringLegal name of the organization
legalShortNamestringLegal name in short form
alternativeNamesarrayAlternative names
websiteUrlstringOrganization website
countryobjectCountry (code and label)
fundingsarrayFunding information
collectedFromarraySources 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