Sparse fieldsets (select)
The select parameter lets you request only the fields you need, reducing response size and improving readability.
/v4/persons?filter=last_name:Smith&select=id,givenName,familyName
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 |
originalId | string | Identifier at the original source (e.g. ORCID) |
givenName | string | Given name |
familyName | string | Family name |
alternativeNames | array | Alternative names |
biography | string | Biography |
subject | array | Subjects associated with the person |
indicator | object | Indicators |
context | array | Research community / infrastructure context |
consent | boolean | Consent information |
coAuthors | array | Co-authors |
Examples
Only IDs and names:
/v4/persons?filter=last_name:Manghi&select=id,givenName,familyName
Names with ORCID:
/v4/persons?filter=last_name:Manghi&select=id,givenName,familyName,originalId