Storyblok
AnnouncedHeadless 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.
Storyblok has announced plans to support UCP as a participant. No public endpoint is available yet.
Storyblok is a headless CMS built around a component-based content model called Stories. Content is structured as a tree of reusable components (called blocks) that editors arrange through a visual editor with live preview. Developers define the block schema in code, authors populate content through the visual interface, and the Content Delivery API returns structured JSON for any rendering layer.
Storyblok is widely used in e-commerce contexts. Brands use it to manage homepage content, landing pages, product descriptions, promotional banners, and category content alongside or integrated with their commerce platform. The component-based model maps well to how modern storefronts render: a hero block, a product grid block, a testimonials block, assembled into a page.
The platform supports multi-language and multi-space setups for international brands. Storyblok's collaboration tools include revision history, content scheduling, and approval workflows. Its technology partner ecosystem includes Shopify, commercetools, BigCommerce, and other composable commerce platforms, with official integrations for Next.js, Nuxt, SvelteKit, and others.
For agents, Storyblok's Content Delivery API is REST-based and straightforward. Agents query for stories by slug, filter by content type, and retrieve structured JSON with the full component tree. The component data includes all author-defined field values in a consistent structure. In a composable commerce stack, Storyblok content provides the editorial and promotional context that agents need to surface product recommendations and purchasing rationale. Each story response includes a "content" object with typed block data, making it machine-readable without HTML parsing. Storyblok has been active in the composable commerce ecosystem and is exploring UCP-compatible patterns for commerce-aware content delivery to AI agents.
Why This Matters for UCP
Storyblok provides the editorial content layer for composable commerce storefronts, giving agents access to structured page content, promotional blocks, and product copy through a component-based REST API without HTML parsing.
UCP Endpoint
Announced — Endpoint not yet publicly available
Integration Example
// Storyblok Content Delivery API for story and component retrieval.
// Agents fetch structured content blocks from a CDN-backed endpoint.
const sbBase = 'https://api.storyblok.com/v2/cdn';
const token = process.env.STORYBLOK_ACCESS_TOKEN;
// Get a story by slug (e.g., a product detail page)
const story = await fetch(
sbBase + '/stories/products/' + productSlug + '?token=' + token,
).then(r => r.json());
console.log('Story type:', story.story.content.component);
// Get all stories of a specific content type with pagination
const productStories = await fetch(
sbBase + '/stories?token=' + token + '&content_type=product&per_page=25&page=1',
).then(r => r.json());
console.log('Total product stories:', productStories.total);
// Resolve links and relations in a promotional story
const promo = await fetch(
sbBase + '/stories/promotions/summer-sale?token=' + token
+ '&resolve_links=url&resolve_relations=product.categories',
).then(r => r.json());Category
Composable CommerceUCP Status
AnnouncedTags
Pricing
freemium
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.
J. Santos
Senior Engineer · Feb 28, 2026
Integration was straightforward. The UCP endpoint discovery works as documented and checkout completes in under 2 seconds.
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.
R. Kapoor
Platform Engineer · Jan 15, 2026
Integrated in an afternoon. Solid implementation with no unexpected edge cases in production.
8 other tools in Composable Commerce
Is this your tool? Claim this listing
Related Composable Commerce
Hygraph
Composable Commerce
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.