Get content from your project
Getting content from your project is one of the core responsibilities of your app.Discover how to use basic filtering to retrieve some of your project’s published content items, such as articles.
Which API to use?
While your content creators write articles and add finishing touches to the content in your project, you can display that content in web and mobile apps using Delivery API. Delivery API is a read-only API that’s available as both REST API and GraphQL API. Here you’ll learn the basics of using the Delivery REST API for getting published content.Make a request
To retrieve content items from a project, you need to specify the project’s environment ID. You can find your environment ID in the environment settings. Let’s see how to get all content items from the specified environment.
Recently published content items may appear in the API after a slight delay.
Filter items by type
You know how to retrieve all items. Let’s expand by retrieving items based on a specific type. In this example, you’ll retrieve items based on the Article content type.1. Find the codename
Before moving further, you need to find the codename of the content type.
You can copy codenames by clicking near the name of a content type, content element, or other objects in your project.
For example, to find the codename of the Article content type, go to Content model > Content types > Article > .
Once you have the codename, use it to filter the requested content items by their type.
2. Filter by type’s codename
The information about a content item’s type is stored in the content item’s System object property. The System object contains metadata about the content item, such as the last content modification date, language, content type, and more.type
property. Any content items not based on the Article content type will be omitted from the API response.
Order the items
By default, the Delivery API sorts content items alphabetically by their codenames. With content like articles, you might want to use chronological order. For example, have the articles ordered by their last modified date.To retrieve content items in a specific order, specify the following:
- The content item property to order by. For example, the property can be a content element (such as text or date & time element) or content item metadata (such as the item’s type or last modified date).
- Whether to use the ascending or descending order.
Sign in with your Kontent.ai credentials or sign up for free to unlock the full lesson, track your progress, and access exclusive expert insights and tips!