Skip to main content
Version: 11.1.1

Filtering projects

Filters narrow down the search results based on specific criteria. Each filter is provided as its own query parameter in the request URL:

param1=value1&param2=value2&...&paramN=valueN

note

By default, different filters are combined using the logical AND operator. If the same filter is provided multiple times, its values are combined using the logical OR operator. See Using logical operators for full details.

Available parameters

Identity and content

ParameterDescription
searchSearch in the content of the project.
titleSearch in the project's title.
keywordsThe project's keywords.
idThe OpenAIRE id of the project.
codeThe grant agreement (GA) code of the project.
acronymThe project's acronym.
callIdentifierThe identifier of the research call.
countryThe country of the project.

Funding

ParameterDescription
fundingShortNameThe short name of the funder.
funderThe funder name.
fundingStreamIdThe identifier of the funding stream.
fundinglevel0IdThe funding level 0 identifier.
fundinglevel1IdThe funding level 1 identifier.
fundinglevel2IdThe funding level 2 identifier.
projectOAMandatePublicationsWhether the project has an OA mandate for publications.

Dates

ParameterDescription
fromStartDateStart date greater than or equal to the given date (YYYY or YYYY-MM-DD).
toStartDateStart date less than or equal to the given date (YYYY or YYYY-MM-DD).
fromEndDateEnd date greater than or equal to the given date (YYYY or YYYY-MM-DD).
toEndDateEnd date less than or equal to the given date (YYYY or YYYY-MM-DD).
fromStartYearStart year greater than or equal to the given year (YYYY).
toStartYearStart year less than or equal to the given year (YYYY).
fromEndYearEnd year greater than or equal to the given year (YYYY).
toEndYearEnd year less than or equal to the given year (YYYY).
startYearProjects with the given start year (YYYY).
endYearProjects with the given end year (YYYY).
activeYearProjects active in the given year (YYYY).

Relations

ParameterDescription
relOrganizationNameThe name or short name of the related organization.
relOrganizationIdThe organization identifier of the related organization.
relOrganizationCountryCodeThe country code of the related organizations.
relCommunityIdProjects connected to the community (with OpenAIRE id).
relCollectedFromDatasourceIdProjects collected from the data source (with OpenAIRE id).

Using logical operators

The API supports the logical operators AND, OR, and NOT.

AND operator

/v3/projects?search="climate" AND "adaptation"

OR operator

The same effect is achieved by repeating the parameter or by separating values with a comma.

/v3/projects?relOrganizationCountryCode=("US" OR "GR")

NOT operator

/v3/projects?fundingShortName="EC" NOT "WT"

note

When using AND, OR, or NOT, each value must be wrapped in double quotes. Bare (unquoted) values are only allowed when no operator is present.

See also the full list of examples.