For Agents
Create, update, schedule, A/B test, and translate HubSpot Site Pages and Landing Pages, with full revision and folder management for agentic publishing flows.
Get started with Pages in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"create and schedule a hubspot landing page"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Pages API.
Create or update Site Pages and Landing Pages individually or in batch
Schedule a page to publish at a specific timestamp via the schedule endpoint
Manage page drafts and push the draft version live in one call
Roll a page back to an earlier revision or restore a revision into draft
Run and end A/B tests on Site Pages with the dedicated ab-test endpoints
GET STARTED
Use for: Create a new HubSpot landing page in folder 12345, Schedule the holiday campaign landing page to publish on December 1, List all site pages last edited in the past week, Restore the homepage to revision 4567
Not supported: Does not manage blog posts, templates, or connected domains — use for creating, updating, scheduling, and translating HubSpot Site and Landing Pages only.
The HubSpot CMS Pages API manages Site Pages and Landing Pages — the two primary marketing page types in HubSpot's CMS. It exposes endpoints for create, update, batch operations, scheduling, drafting, A/B testing, revisions, and multi-language groupings, plus full folder management for landing pages. Use it to author, schedule, translate, and version marketing pages programmatically rather than through the HubSpot UI.
Attach pages to a multi-language group so translations stay aligned
Organise Landing Pages into folders, including batch folder create and archive
Patterns agents use Pages API for, with concrete tasks.
★ Programmatic Landing Page Production
Marketing teams running many concurrent campaigns build landing pages from templates rather than from scratch. The Pages API exposes a batch create endpoint plus folder management, letting an integration spin up dozens of campaign landing pages in one orchestrated run. Each new page can be scheduled and attached to a folder for clean reporting.
POST 25 page payloads to /cms/v3/pages/landing-pages in a batch, attach them all to folder 'Q4-Campaign' via /cms/v3/pages/landing-pages/folders/batch/create, and schedule each via /cms/v3/pages/landing-pages/{objectId}/draft and the schedule endpoint.
Multi-Language Page Publishing
Brands launching campaigns in several languages need each translation tied to the source page so reporting rolls up cleanly. The multi-language endpoints attach pages to a language group, set a primary, and update language assignments — keeping a single conceptual page across locales rather than disconnected duplicates.
POST to /cms/v3/pages/site-pages/multi-language/attach-to-lang-group with the source page ID and the translated page IDs, then call set-new-lang-primary if the primary language has changed.
A/B Test Lifecycle Automation
Conversion-rate teams run a constant cadence of A/B tests on landing pages. Using the ab-test endpoints, an agent can launch a test, monitor results via revision endpoints, and call the ab-test/end endpoint to crown the winner — all without entering the HubSpot UI. The result is a reproducible experimentation loop.
After 7 days of traffic, POST to /cms/v3/pages/site-pages/ab-test/end with the winning variant, then update any campaign reporting to reflect the winning page.
Pre-Publish Revision Audit
Before a major page goes live, an editor wants to confirm exactly what changed since the last published version. The revisions endpoints return the change history and a specific revision payload so the agent can render a diff for human approval, then push the draft live or restore a prior revision if rejected.
GET /cms/v3/pages/site-pages/{objectId}/revisions, fetch the latest two revisions, render a side-by-side diff for the reviewer, and either push the draft live or POST to the restore endpoint.
Agent-Driven Page Publishing
An AI agent handed a brief plus brand assets needs to produce a live landing page end-to-end. Through Jentic, the agent searches for the create-landing-page operation, loads the schema, and executes it; subsequent calls schedule the page, attach it to a folder, and push the draft live. Credentials never leave the Jentic vault.
Use Jentic to search 'create hubspot landing page', load the schema, execute it with the brief, then call the draft push-live endpoint to bring the page online.
66 endpoints — the hubspot cms pages api manages site pages and landing pages — the two primary marketing page types in hubspot's cms.
METHOD
PATH
DESCRIPTION
/cms/v3/pages/landing-pages
Create a landing page
/cms/v3/pages/site-pages/batch/update
Update site pages in batch
/cms/v3/pages/site-pages/schedule
Schedule a site page to publish
/cms/v3/pages/site-pages/ab-test/end
End an A/B test on a site page
/cms/v3/pages/site-pages/{objectId}/revisions
List revisions of a site page
/cms/v3/pages/landing-pages/{objectId}/draft
Update the draft of a landing page
/cms/v3/pages/site-pages/multi-language/attach-to-lang-group
Attach a page to a language group
/cms/v3/pages/landing-pages/folders/batch/create
Create landing page folders in batch
/cms/v3/pages/landing-pages
Create a landing page
/cms/v3/pages/site-pages/batch/update
Update site pages in batch
/cms/v3/pages/site-pages/schedule
Schedule a site page to publish
/cms/v3/pages/site-pages/ab-test/end
End an A/B test on a site page
/cms/v3/pages/site-pages/{objectId}/revisions
List revisions of a site page
Three things that make agents converge on Jentic-routed access.
Credential isolation
HubSpot OAuth tokens and Private App keys live in the Jentic encrypted vault (MAXsystem). Agents only ever hold a scoped execution token, so the underlying HubSpot secret stays out of model context.
Intent-based discovery
Agents search Jentic with intents like 'create hubspot landing page' or 'schedule hubspot site page' and receive the matching operation along with a ready-to-fill input schema.
Time to first call
Direct integration: 3-5 days to wire OAuth, batch creates, scheduling, drafts, and A/B test endpoints. Through Jentic: under a day to search, load, and execute each operation.
Alternatives and complements available in the Jentic catalogue.
Blog Posts
Manages blog post objects rather than landing or site pages
Choose Posts when the content is a blog entry; choose Pages when it's a landing or site page.
Domains
Provides the connected domains on which these pages are published
Use Domains before publishing to select the correct connected domain for the page.
CMS Source Code
Manages templates and modules referenced by these pages
Use Source Code when the agent needs to publish or update the templates that pages render.
URL Redirects
Configures redirects for replaced or retired pages
Use URL Redirects when retiring a page so old URLs continue to resolve.
Specific to using Pages API through Jentic.
What authentication does the HubSpot CMS Pages API use?
It accepts HubSpot OAuth 2.0 tokens or Private App tokens in the Authorization header with the content scope. Jentic stores those credentials in its encrypted vault and gives the agent only a scoped execution token at call time.
Can I create both Site Pages and Landing Pages with this API?
Yes. Site Pages are managed under /cms/v3/pages/site-pages and Landing Pages under /cms/v3/pages/landing-pages, with parallel endpoints for each type. They share the revision and multi-language patterns but maintain separate object records.
What are the rate limits for the HubSpot Pages API?
It uses HubSpot's standard public API caps: 100 requests per 10 seconds for OAuth apps and 110 per 10 seconds for Private Apps on Pro and Enterprise. The batch endpoints help large publishing jobs stay under the limit.
How do I schedule a landing page to publish through Jentic?
Run pip install jentic, search 'schedule hubspot landing page', load the schema, and execute it with the page ID and target timestamp. Jentic posts to the schedule endpoint with the right auth headers.
Does the Pages API let me upload page templates?
No. Templates and modules are managed by the CMS Source Code API. The Pages API consumes templates (by template path or ID) but does not create or upload them.
Can I run an A/B test entirely through the API?
Yes. The site-pages namespace exposes ab-test/end and complementary endpoints to manage test variants. Combine with revisions to track the winning variant before formally ending the test.
/cms/v3/pages/landing-pages/{objectId}/draft
Update the draft of a landing page
/cms/v3/pages/site-pages/multi-language/attach-to-lang-group
Attach a page to a language group
/cms/v3/pages/landing-pages/folders/batch/create
Create landing page folders in batch