Back to Directory
Contentful favicon

Contentful

Announced

API-first headless CMS used by thousands of brands to manage structured content across web, mobile, and commerce channels with a CDN-backed Content Delivery API and flexible content modeling.

Contentful has announced plans to support UCP as a participant. No public endpoint is available yet.

Contentful is a headless content management system built for API-first workflows. It separates content from presentation, storing structured content in a cloud platform and delivering it through a REST or GraphQL API. Teams define custom content types with fields and relationships, then authors populate content through Contentful's web-based editor. The Content Delivery API (CDA) returns published content, the Content Preview API returns drafts, and the Content Management API (CMA) allows programmatic content manipulation.

Contentful is used by brands across e-commerce, media, and enterprise SaaS to manage content that appears across web apps, mobile apps, digital signage, and commerce storefronts. Its content model is schema-driven: developers define content types (product descriptions, landing pages, promotions, blog posts) with typed fields, and the API returns structured JSON that clients render in their own way.

The platform's localization support handles multi-language and multi-region content management. The Environments feature allows teams to stage content changes and test them in isolation before publishing. Rich text fields can reference other content entries, creating linked content graphs that agents can traverse.

For AI agents, Contentful is relevant as the content layer behind composable commerce storefronts. An agent browsing products or reading purchase context (promotional terms, product descriptions, return policies) may be querying content managed in Contentful. The CDA is read-optimized and CDN-backed, returning content in milliseconds. Agents can query by content type, filter by field values, include linked entries, and use full-text search. The GraphQL API provides typed queries that return exactly the fields requested without overfetching. Contentful has been exploring how AI tools can interact with structured content at scale, positioning the platform well for agent-driven content retrieval. The Content Management API enables agents to write new content entries, update existing ones, and publish changes programmatically. Contentful announced UCP integration plans to make content-backed product data accessible through standardized agent endpoints.

Why This Matters for UCP

Contentful provides the structured content layer behind composable commerce storefronts, giving agents access to product descriptions, promotional content, and rich editorial context through a CDN-backed REST and GraphQL API.

UCP Endpoint

Announced — Endpoint not yet publicly available

Integration Example

// Contentful Content Delivery API for structured content retrieval.
// Agents query product descriptions, promotions, and commerce content.

const spaceId = process.env.CONTENTFUL_SPACE_ID;
const accessToken = process.env.CONTENTFUL_ACCESS_TOKEN;
const cdaBase = 'https://cdn.contentful.com/spaces/' + spaceId;

// Query product entries with linked media and categories
const products = await fetch(
  cdaBase + '/entries?content_type=product&include=2&limit=10',
  { headers: { Authorization: 'Bearer ' + accessToken } }
).then(r => r.json());

console.log('Total products:', products.total);

// Fetch a specific product by slug
const result = await fetch(
  cdaBase + '/entries?content_type=product&fields.slug=' + productSlug + '&include=2',
  { headers: { Authorization: 'Bearer ' + accessToken } }
).then(r => r.json());

const product = result.items[0];
console.log('Product:', product.fields.name, 'Price:', product.fields.price);

UCP Status

Announced

Tags

headless-cmscontent-apicomposabledeveloper-tools

Pricing

freemium

Added 2026-04-23
Verified2026-04-23
Documentation

Is this your listing? Claim it to get analytics, a verified badge, and priority placement. Claim your listing →

Reviews

★★★★★4.7 (3 reviews)

These are illustrative examples to show what reviews will look like. Submit your own experience below.

ML

M. Lee

Backend Developer · Mar 3, 2026

★★★★

Works well for our use case. The documentation is accurate and the implementation matches what the spec describes.

RK

R. Kapoor

Platform Engineer · Jan 15, 2026

★★★★★

Integrated in an afternoon. Solid implementation with no unexpected edge cases in production.

JS

J. Santos

Senior Engineer · Feb 28, 2026

★★★★★

Integration was straightforward. The UCP endpoint discovery works as documented and checkout completes in under 2 seconds.

8 other tools in Composable Commerce

Is this your tool? Claim this listing

Related Composable Commerce

Hygraph favicon

Hygraph

Composable Commerce

Announced

GraphQL-native headless CMS with content federation capabilities that unifies data from multiple sources into a single queryable schema, used by composable commerce teams for structured content delivery.

headless-cmsgraphqlcontent-federation
UnverifiedAgent-Ready: 20%
3.8implementation(22 signals)
freemium
Storyblok favicon

Storyblok

Composable Commerce

Announced

Headless CMS with a visual editor and component-based content model (Stories) used by e-commerce brands to manage storefront content, landing pages, and promotions across channels.

headless-cmsvisual-editorcomposable
UnverifiedAgent-Ready: 20%
3.4implementation(31 signals)
freemium
Sanity favicon

Sanity

Composable Commerce

Announced

Headless CMS with real-time collaboration, a GROQ query language, and a hosted Content Lake used by developers to build structured content backends with schema-as-code tooling.

headless-cmsstructured-contentreal-time
UnverifiedAgent-Ready: 20%
3.7implementation(50 signals)
freemium