content_read_page
Fetches a published page from Ghost CMS by ID or slug for display or embedding. Returns a single page object with optional related data.
Instructions
Read a single published page by ID or slug (read-only, public content).
USE CASE:
Display a static page (About, Contact, etc.) on your website
Fetch page content for embedding or rendering
IDENTIFIER: Provide either 'id' OR 'slug', not both.
NOTE: Only returns published pages visible to the public. For drafts or scheduled pages, use admin_read_page instead.
RETURNS: Single page object with requested fields and related data.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Page ID | |
| slug | No | Page slug | |
| include | No | Related data to include: tags, authors (comma-separated) | |
| fields | No | Comma-separated list of fields to return | |
| formats | No | Content formats: html, plaintext, mobiledoc (comma-separated) |