get_post
Retrieve complete content from any Substack post using its unique identifier to access full articles and detailed information.
Instructions
Get a specific Substack post by ID with full content
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| post_id | Yes | The ID of the post to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"post_id": {
"description": "The ID of the post to retrieve",
"type": "number"
}
},
"required": [
"post_id"
],
"type": "object"
}