Kontent AI Items API

The Items API from Kontent AI — 3 operation(s) for items.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/kontent-ai-items-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

kontent-ai-items-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Kontent.ai Delivery Assets Items 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
paths:
  /{environment_id}/items:
    parameters:
    - $ref: '#/components/parameters/EnvironmentId'
    get:
      summary: List content items
      description: Retrieve a list of content items from the specified environment.
      operationId: listContentItems
      parameters:
      - in: query
        name: language
        schema:
          type: string
      - in: query
        name: elements
        schema:
          type: string
      - in: query
        name: order
        schema:
          type: string
      - in: query
        name: depth
        schema:
          type: integer
      - in: query
        name: limit
        schema:
          type: integer
      - in: query
        name: skip
        schema:
          type: integer
      responses:
        '200':
          description: A page of content items
          content:
            application/json:
              schema:
                type: object
      tags:
      - Items
  /{environment_id}/items/{item_codename}:
    parameters:
    - $ref: '#/components/parameters/EnvironmentId'
    - in: path
      name: item_codename
      required: true
      schema:
        type: string
    get:
      summary: Get a content item
      description: Retrieve a single content item by codename.
      operationId: getContentItem
      responses:
        '200':
          description: A single content item
          content:
            application/json:
              schema:
                type: object
      tags:
      - Items
  /{environment_id}/items/{item_codename}/used-in:
    parameters:
    - $ref: '#/components/parameters/EnvironmentId'
    - in: path
      name: item_codename
      required: true
      schema:
        type: string
    get:
      summary: List items using a content item
      operationId: itemUsedIn
      responses:
        '200':
          description: List of items referencing the content item
          content:
            application/json:
              schema:
                type: object
      tags:
      - Items
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 <YOUR_DELIVERY_API_KEY>`. Required for

        secure delivery, preview delivery, and secured asset access. The

        default public Delivery API does not require authentication.

        '