Optimizely Content Types API

Retrieve available content type definitions.

Operations 1

GET /contenttypes List content types #

Documentation

Specifications

Other Resources

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/optimizely-content-types-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

optimizely-content-types-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Optimizely Content Delivery Content Types API
  description: The Optimizely Content Delivery API is a flexible REST API for building headless CMS solutions with Optimizely CMS. It provides a pluggable and configurable web API for querying content, enabling developers to deliver content to any frontend framework or channel. The API supports content retrieval, filtering, expansion of content references, and querying of sites and content types for building decoupled architectures using frameworks like React, Vue, or Angular.
  version: '3.0'
  contact:
    name: Optimizely Support
    url: https://support.optimizely.com
  termsOfService: https://www.optimizely.com/legal/terms/
servers:
- url: '{siteUrl}/api/episerver/v3.0'
  description: Optimizely CMS Content Delivery API endpoint
  variables:
    siteUrl:
      default: https://www.example.com
      description: The base URL of the Optimizely CMS site
security:
- bearerAuth: []
- anonymous: []
tags:
- name: Content Types
  description: Retrieve available content type definitions.
paths:
  /contenttypes:
    get:
      operationId: listContentTypes
      summary: List content types
      description: Returns a list of available content type definitions in the Optimizely CMS instance.
      tags:
      - Content Types
      responses:
        '200':
          description: Successfully retrieved content types
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ContentType'
        '401':
          description: Authentication credentials are missing or invalid
components:
  schemas:
    ContentType:
      type: object
      description: A content type definition
      properties:
        name:
          type: string
          description: Name of the content type
        displayName:
          type: string
          description: Display name of the content type
        description:
          type: string
          description: Description of the content type
        base:
          type: string
          description: Base content type
        properties:
          type: object
          description: Properties defined on the content type
          additionalProperties:
            type: object
            properties:
              type:
                type: string
                description: Property data type
              displayName:
                type: string
                description: Display name of the property
              sortOrder:
                type: integer
                description: Sort order for the property
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth 2.0 or OpenID Connect Bearer token for authenticated access.
    anonymous:
      type: http
      scheme: bearer
      description: Anonymous access for publicly available content.
externalDocs:
  description: Optimizely Content Delivery API Documentation
  url: https://docs.developers.optimizely.com/content-management-system/v1.5.0-content-delivery-api/docs/content-delivery-api