content_read_post
Read a published blog post by ID or slug, returning HTML content and related data like tags and authors. Ideal for displaying posts or fetching content for sharing.
Instructions
Read a single published post by ID or slug (read-only, public content).
USE CASE:
Display a single blog post page on your website
Fetch post content for embedding or social sharing
Get full post details including HTML content
IDENTIFIER: Provide either 'id' OR 'slug', not both.
NOTE: Only returns published posts visible to the public. For drafts or scheduled posts, use admin_read_post instead.
RETURNS: Single post object with requested fields and related data (tags, authors).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Post ID | |
| slug | No | Post 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) |