Skip to main content
GET/api/delivery/projects/{projectId}/entries

Parameters

NameParameter typeTypeFormatDescriptionExampleRequired
projectIdpathstringThe project identifier found in the project overview screen of the management consolemovieDbtrue
versionStatusquerystringThe status of the associated entry, either published or latest. The default is publishedfalse
linkDepthquerynumberintegerThe depth at which to resolve the full entry data for a linked entry or asset, with a maximum depth value of 10false
pageIndexquerynumberintegerThe index of the pagefalse
pageSizequerynumberintegerThe number of results per page. The default is 25.false
orderquerystringA comma-separated list of the field Ids to order the results by. Prefix field Id with - for descending order.-version.modifiedfalse
fieldsquerystringA comma-separated list of field ids to restrict the fields returned for an entryfalse
languagequerystringlanguageThe specified language for the node. If no value is provided then the menu order is removed for all languagesfalse
fieldLinkDepthsqueryobjectLink depths for specific field paths to resolve the full entry data for a linked entry or asset, with a maximum depth value of 10 (version 16+ only){"field1":2,"composer":1,"composer.component.field":2}false

Responses

HTTP status codeReasonModel
200SuccessEntry
401UnauthorizedError
404Project not foundError
404Content type not foundError
500Internal server errorError

Examples

List all entries - actors, movies, directors, etc.

HTTP
1
GET: /api/delivery/projects/movieDb/entries/

List all entries translated to German

HTTP
1
GET: /api/delivery/projects/movieDb/entries/?language=de

List all entries translated to German and ordered by published date descending

HTTP
1
GET: /api/delivery/projects/movieDb/entries/?language=de&order=-sys.published

List all entries with their direct child entries, assets and images resolved

HTTP
1
GET: /api/delivery/projects/movieDb/entries/?linkDepth=1

List all entries with their direct child entries, assets and images only resolved in one field (version 16+ only)

HTTP
1
GET: /api/delivery/projects/movieDb/entries/?fieldLinkDepths={"linkedEntries":1}

List the latest version of all entries

HTTP
1
GET: /api/delivery/projects/movieDb/entries/?versionStatus=latest

Still need help?

New support request