Contentful Spaces API

The Spaces API from Contentful — 10 operation(s) for spaces.

Operations 10

GET /spaces/{space_id} Get space #
GET /spaces/{space_id}/environments/{environment_id}/content_types Get content types #
GET /spaces/{space_id}/environments/{environment_id}/content_types/{content_type_id} Get content type #
GET /spaces/{space_id}/environments/{environment_id}/entries Get entries #
GET /spaces/{space_id}/environments/{environment_id}/entries/{entry_id} Get entry #
GET /spaces/{space_id}/environments/{environment_id}/assets Get assets #
GET /spaces/{space_id}/environments/{environment_id}/assets/{asset_id} Get asset #
GET /spaces/{space_id}/environments/{environment_id}/locales Get locales #
GET /spaces/{space_id}/environments/{environment_id}/tags Get tags #
GET /spaces/{space_id}/environments/{environment_id}/sync Sync content #

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/contentful-spaces-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

contentful-spaces-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Contentful Content Delivery Spaces API
  version: '1.0'
  description: Read-only REST API for delivering published content from Contentful spaces to apps, websites, and other media. Returns entries, assets, content types, locales, tags, and supports incremental sync.
  x-generated-from: https://www.contentful.com/developers/docs/references/content-delivery-api/
  x-generated-by: claude-crawl-2026-05-08
servers:
- url: https://cdn.contentful.com
  description: Content Delivery API
security:
- BearerAuth: []
tags:
- name: Spaces
paths:
  /spaces/{space_id}:
    get:
      summary: Get space
      operationId: getSpace
      parameters:
      - $ref: '#/components/parameters/SpaceId'
      responses:
        '200':
          description: Space resource
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Resource'
      tags:
      - Spaces
  /spaces/{space_id}/environments/{environment_id}/content_types:
    get:
      summary: Get content types
      operationId: getContentTypes
      parameters:
      - $ref: '#/components/parameters/SpaceId'
      - $ref: '#/components/parameters/EnvironmentId'
      responses:
        '200':
          description: Collection of content types
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Collection'
      tags:
      - Spaces
  /spaces/{space_id}/environments/{environment_id}/content_types/{content_type_id}:
    get:
      summary: Get content type
      operationId: getContentType
      parameters:
      - $ref: '#/components/parameters/SpaceId'
      - $ref: '#/components/parameters/EnvironmentId'
      - name: content_type_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Content type resource
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Resource'
      tags:
      - Spaces
  /spaces/{space_id}/environments/{environment_id}/entries:
    get:
      summary: Get entries
      operationId: getEntries
      parameters:
      - $ref: '#/components/parameters/SpaceId'
      - $ref: '#/components/parameters/EnvironmentId'
      responses:
        '200':
          description: Collection of entries
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Collection'
      tags:
      - Spaces
  /spaces/{space_id}/environments/{environment_id}/entries/{entry_id}:
    get:
      summary: Get entry
      operationId: getEntry
      parameters:
      - $ref: '#/components/parameters/SpaceId'
      - $ref: '#/components/parameters/EnvironmentId'
      - name: entry_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Entry resource
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Resource'
      tags:
      - Spaces
  /spaces/{space_id}/environments/{environment_id}/assets:
    get:
      summary: Get assets
      operationId: getAssets
      parameters:
      - $ref: '#/components/parameters/SpaceId'
      - $ref: '#/components/parameters/EnvironmentId'
      responses:
        '200':
          description: Collection of assets
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Collection'
      tags:
      - Spaces
  /spaces/{space_id}/environments/{environment_id}/assets/{asset_id}:
    get:
      summary: Get asset
      operationId: getAsset
      parameters:
      - $ref: '#/components/parameters/SpaceId'
      - $ref: '#/components/parameters/EnvironmentId'
      - name: asset_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Asset resource
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Resource'
      tags:
      - Spaces
  /spaces/{space_id}/environments/{environment_id}/locales:
    get:
      summary: Get locales
      operationId: getLocales
      parameters:
      - $ref: '#/components/parameters/SpaceId'
      - $ref: '#/components/parameters/EnvironmentId'
      responses:
        '200':
          description: Collection of locales
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Collection'
      tags:
      - Spaces
  /spaces/{space_id}/environments/{environment_id}/tags:
    get:
      summary: Get tags
      operationId: getTags
      parameters:
      - $ref: '#/components/parameters/SpaceId'
      - $ref: '#/components/parameters/EnvironmentId'
      responses:
        '200':
          description: Collection of tags
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Collection'
      tags:
      - Spaces
  /spaces/{space_id}/environments/{environment_id}/sync:
    get:
      summary: Sync content
      operationId: sync
      parameters:
      - $ref: '#/components/parameters/SpaceId'
      - $ref: '#/components/parameters/EnvironmentId'
      - name: initial
        in: query
        schema:
          type: boolean
      - name: sync_token
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Sync result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Collection'
      tags:
      - Spaces
components:
  schemas:
    Collection:
      type: object
      properties:
        sys:
          type: object
          additionalProperties: true
        total:
          type: integer
        skip:
          type: integer
        limit:
          type: integer
        items:
          type: array
          items:
            $ref: '#/components/schemas/Resource'
    Resource:
      type: object
      additionalProperties: true
  parameters:
    SpaceId:
      name: space_id
      in: path
      required: true
      schema:
        type: string
    EnvironmentId:
      name: environment_id
      in: path
      required: true
      schema:
        type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer