Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Marketing / Agility CMS REST API
Agility CMS REST API logo

Agility CMS REST API

Agent-ready OpenAPI document · curated by JenticMarketingContent ManagementapiKey15 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Read content items, pages, lists, sitemaps, and URL redirections from an Agility CMS instance via fetch (published) or preview (staging) endpoints, scoped by GUID and locale.

Use for: Get the published content item with ID 142 from my Agility instance, List all blog posts in the en-us locale for reference name posts, Retrieve the nested sitemap for the website channel, Find all content items synced after a given checkpoint

Not supported: Does not handle content authoring, asset uploads, or user management - use for read-only content delivery from an existing Agility CMS instance only.

Jentic publishes the only available OpenAPI specification for Agility CMS REST API, keeping it validated and agent-ready. Agility CMS is a headless content management system that lets agents and applications fetch published content, preview staging content, and synchronise large catalogues of pages, lists, and galleries from a content instance. The API exposes 15 read endpoints scoped by instance GUID, API type (fetch or preview), and locale, covering single items, lists by reference name, sitemaps, paginated sync feeds, URL redirections, and content models. Authentication uses an APIKey header, and responses return structured JSON ready for downstream agent reasoning or static site rendering.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Agility CMS REST API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Agility CMS REST API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fagilitycms.com%2Fagilitycms" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fagilitycms.com%2Fagilitycms" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Agility CMS REST API.

Retrieve a single content item by ID with full field data and locale-specific values

List content items by reference name with pagination and filter options

Fetch flat or nested sitemaps for a channel to drive navigation builds

Stream paginated content and page sync feeds for incremental cache refreshes

Resolve URL redirections changed since a given timestamp for SEO maintenance

Inspect content model definitions to drive schema-aware rendering

Use Cases

Patterns agents use Agility CMS REST API for, with concrete tasks.

★ Headless Site Rendering

Agents and frontends call Agility CMS to fetch the published content for a route, including the page record, its module data, and any list references. The API resolves locale, returns structured JSON for the page and its content items, and can be paired with the sitemap endpoints to build navigation. Integration is straightforward because every endpoint is a GET keyed by GUID, API type, and content path or ID.

Call GET /{guid}/fetch/en-us/page/{id} for page id 27 and return the title, modules, and zone names

Incremental Content Sync

For static site generators or external search indexes, agents poll the sync endpoints to pull only the content items and pages that changed since the last checkpoint token. The paged response is designed for full-corpus reload then incremental replay, so caches stay current without rebuilding from scratch each deploy.

Call GET /{guid}/fetch/en-us/sync/items with the previous sync token and write each returned item to a local cache

Preview Workflow for Editors

Editorial agents request the preview API type to see latest unpublished content alongside published content, useful for AI-assisted content review or pre-publish QA. The same path structure works against either the fetch or preview surface, so a single agent flow can switch between staging and production reads with one parameter change.

Call GET /{guid}/preview/en-us/list/blog-posts to fetch the latest staged blog posts for review

AI Agent Content Lookup via Jentic

An agent built on Jentic can answer natural-language questions about an Agility CMS instance - for example resolving a slug to a page record, retrieving the gallery used on a campaign, or summarising the latest items in a list. Jentic loads the request schema, injects the APIKey header from the vault, and executes the call without exposing the credential to the agent context.

Use Jentic to search 'fetch a page from agility cms', load the page-by-id schema, and return the page record

Key Endpoints

15 endpoints — jentic publishes the only available openapi specification for agility cms rest api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/{guid}/{apitype}/{locale}/item/{id}

Get a content item by ID

GET

/{guid}/{apitype}/{locale}/list/{referenceName}

List content items by reference name

GET

/{guid}/{apitype}/{locale}/page/{id}

Get a page by ID

GET

/{guid}/{apitype}/{locale}/sitemap/nested/{channelName}

Get the nested sitemap for a channel

GET

/{guid}/{apitype}/{locale}/sync/items

Stream paginated content item changes

GET

/{guid}/{apitype}/{locale}/sync/pages

Stream paginated page changes

GET

/{guid}/{apitype}/urlredirection

List URL redirections updated since a date

GET

/{guid}/{apitype}/contentmodels

Return content model definitions

GET

/{guid}/{apitype}/{locale}/item/{id}

Get a content item by ID

GET

/{guid}/{apitype}/{locale}/list/{referenceName}

List content items by reference name

GET

/{guid}/{apitype}/{locale}/page/{id}

Get a page by ID

GET

/{guid}/{apitype}/{locale}/sitemap/nested/{channelName}

Get the nested sitemap for a channel

GET

/{guid}/{apitype}/{locale}/sync/items

Stream paginated content item changes

GET

/{guid}/{apitype}/{locale}/sync/pages

Stream paginated page changes

GET

/{guid}/{apitype}/urlredirection

List URL redirections updated since a date

GET

/{guid}/{apitype}/contentmodels

Return content model definitions

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the Agility CMS REST API by hand means managing its APIKey header and threading the instance guid, apitype, and locale through every content path. Through Jentic you install once, import the Agility CMS REST API from the API Directory, store the key once, and your agent calls it.

Permission scoping

Permission scoping

Agility CMS puts the instance guid in the URL path (/{guid}/{apitype}/...) and every operation is a read, so a rule can pin the agent to one instance's content delivery. You choose which read operations it may call, such as fetching an item or a page, so anything you leave out is not reachable.

Credential management

Credential isolation

Your Agility CMS APIKey is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'fetch a page from Agility CMS', and Jentic returns the matching operation with its input schema, including guid, apitype, locale, and id, so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Contentful

→

Headless CMS with content delivery and management APIs and richer environment/locale tooling

Choose Contentful when the project needs multi-environment content workflows or GraphQL delivery alongside REST.

Alternative

Sanity

→

Headless CMS with a real-time content lake and GROQ query language

Choose Sanity when agents need to run ad-hoc structured queries over content rather than predefined endpoints.

Alternative

Storyblok

→

Visual headless CMS with a similar fetch/preview content delivery model

Choose Storyblok when editors need a visual editor on top of headless content delivery.

Alternative

Prismic

→

Headless CMS with slice-based content modelling and a REST/GraphQL delivery API

Choose Prismic for slice-based page composition workflows.

Alternative

Kontent.ai

→

Enterprise headless CMS with delivery, preview, and management APIs

Choose Kontent.ai for enterprise governance, taxonomies, and workflow approvals.

FAQs

Specific to using Agility CMS REST API through Jentic.

Why is there no official OpenAPI spec for Agility CMS REST API?

Agility CMS does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call the Agility CMS REST API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Agility CMS REST API use?

The API uses an API key sent in the APIKey header on every request. Through Jentic, the key is held in the credential vault and injected at execution time, so the raw value never enters the agent context.

Can I read both published and draft content with the Agility CMS REST API?

Yes. Each path takes an apitype segment of either fetch (published content) or preview (latest, including staged content). The same item, list, and page endpoints work against both surfaces, so an agent can switch between production and staging reads by changing one path parameter.

What are the rate limits for the Agility CMS REST API?

The OpenAPI spec does not declare explicit rate limits. Treat the fetch surface as cached and read-heavy; for large catalogues use the /sync/items and /sync/pages endpoints with continuation tokens rather than polling individual items.

How do I fetch a specific page through Jentic?

Search Jentic for 'fetch an Agility CMS page', then load the GET /{guid}/{apitype}/{locale}/page/{id} operation schema and execute with the page id, locale, and your instance GUID. Jentic handles the APIKey header and returns the structured page record.

How do I keep a static site in sync with Agility CMS?

Use GET /{guid}/{apitype}/{locale}/sync/items and /sync/pages. Both return paged deltas; persist the continuation token between runs so subsequent calls only return changes. Pair with /urlredirection to refresh redirect rules between deploys.

Can I limit what my agent is allowed to do with the Agility CMS REST API?

Yes. Because Jentic One is self-hosted, your own rules decide which operations and credentials the agent may use. Every Agility CMS operation is a read and the instance GUID sits in the URL path, so you can pin the agent to a single content instance and grant only the calls you want, such as fetching an item or a page while withholding sitemap, sync, or content-model reads. Anything you leave out of the rule is not reachable by the agent.

GET STARTED

Start building with Agility CMS REST API

Explore with Jentic One
View OpenAPI Document