Skip to main content
Version: Next

Sparse fieldsets (select)

The select parameter lets you request only the fields you need, reducing response size and improving readability.

/v4/research-products?filter=type:publication&select=id,mainTitle,authors.fullName

Field names match the actual JSON property names in the response. Dotted paths filter nested objects and arrays — for example, authors.fullName returns each author object containing only the fullName field.

Selectable response fields

Identity

FieldTypeDescription
idstringOpenAIRE identifier
pidsarrayPersistent identifiers (DOI, PMID, etc.)
originalIdsarrayIdentifiers at original sources

Classification

FieldTypeDescription
typestringResult type: publication, dataset, software, other
subjectsarrayKeywords and subject classifications

Titles and text

FieldTypeDescription
mainTitlestringPrimary title of the research product
subTitlestringExplanatory or alternative title
descriptionsarrayAbstract / description texts

Dates

FieldTypeDescription
publicationDatestringMain date (typically publication or issued date)
embargoEndDatestringDate when embargo ends and result turns Open Access
dateOfCollectionstringWhen OpenAIRE last collected the record
lastUpdateTimeStamplongTimestamp of last update in OpenAIRE

Authors

FieldTypeDescription
authorsarrayFull author objects (includes all sub-fields below)
authors.idstringAuthor identifier
authors.fullNamestringAuthor full name
authors.namestringAuthor first name
authors.surnamestringAuthor surname
authors.rankintegerAuthor position in the author list
authors.pidobjectAuthor persistent identifier (ORCID)
authors.pid.idobjectPID scheme + value pair
authors.pid.id.schemestringPID scheme (e.g. ORCID)
authors.pid.id.valuestringPID value (e.g. 0000-0001-2345-6789)
authors.pid.provenanceobjectWhy the PID was associated to the author

Open Access

FieldTypeDescription
bestAccessRightobjectBest access right (includes code, label, scheme)
bestAccessRight.codestringAccess right code
bestAccessRight.labelstringAccess right label (e.g. Open Access)
bestAccessRight.schemestringAccess right scheme
openAccessColorstringOA color: bronze, gold, hybrid
isGreenbooleanTrue if green Open Access
isInDiamondJournalbooleanTrue if published in a Diamond Journal
publiclyFundedbooleanTrue if outcome of a publicly funded project

Impact and indicators

FieldTypeDescription
indicatorsobjectFull indicators object (usage counts + impact measures)
indicators.usageCountsobjectUsage statistics
indicators.impactMeasuresobjectCitation-based impact measures

Provenance

FieldTypeDescription
publisherstringPublisher name
containerobjectJournal or conference information
collectedFromarraySources from which the record was collected

Projects and affiliations

FieldTypeDescription
projectsarrayGrants / projects that funded the result
organizationsarrayAffiliated organizations
communitiesarrayResearch communities / infrastructures

Other

FieldTypeDescription
languageobjectLanguage of the result
countriesarrayCountries associated with the result
instancesarraySpecific materialisations / versions of the result
sourcesarrayDublin Core dc:source values
formatsarrayFile formats
contributorsarrayContributors
coveragesarrayCoverage information
documentationUrlsarraySoftware documentation URLs
codeRepositoryUrlstringSource code repository URL
programmingLanguagestringProgramming language (software type)
contactPeoplearrayContact persons (software type)
contactGroupsarrayContact groups (software type)
toolsarrayRelated tools (other type)
sizestringDeclared dataset size
versionstringVersion of the result
geoLocationsarrayGeolocation information
linksarrayProject links
eoscIfGuidelinesarrayEOSC Interoperability Framework guidelines

Examples

Only IDs and titles:

/v4/research-products?filter=type:publication&select=id,mainTitle

Authors with only their names and ORCID:

/v4/research-products?filter=type:publication&select=id,mainTitle,authors.fullName,authors.pid.id.value

Minimal metadata with access rights:

/v4/research-products?filter=type:dataset&select=id,mainTitle,publicationDate,bestAccessRight.label