openapi: 3.1.0 info: title: Kontent.ai Delivery Assets Items Feed API version: '1.0' description: 'Read-only REST API for retrieving published and preview content from a Kontent.ai environment. Endpoints and authentication scheme transcribed from the public Kontent.ai Learn documentation. ' contact: name: Kin Lane email: kin@apievangelist.com url: https://apievangelist.com license: name: Documentation reference only url: https://kontent.ai/learn/docs/apis/delivery-api servers: - url: https://deliver.kontent.ai description: Production (published content) - url: https://preview-deliver.kontent.ai description: Preview (latest content, requires authentication) security: [] tags: - name: Items Feed paths: /{environment_id}/items-feed: parameters: - $ref: '#/components/parameters/EnvironmentId' get: summary: Items feed description: Retrieve a dynamically paginated list of content items. operationId: getItemsFeed responses: '200': description: Items feed payload content: application/json: schema: type: object tags: - Items Feed components: parameters: EnvironmentId: in: path name: environment_id required: true description: Kontent.ai environment identifier (UUID). schema: type: string format: uuid securitySchemes: BearerAuth: type: http scheme: bearer bearerFormat: JWT description: 'Send `Authorization: Bearer `. Required for secure delivery, preview delivery, and secured asset access. The default public Delivery API does not require authentication. '