> ## Documentation Index
> Fetch the complete documentation index at: https://docs.twixb.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Post

> Get full post details including content.

# Get Post

<div className="method-badge get">GET</div> `/v1/posts/{post_id}`

Returns the full post including `content_markdown`.

## Path parameters

| Parameter | Type          | Description |
| --------- | ------------- | ----------- |
| `post_id` | string (UUID) | Post ID     |

```bash theme={null}
curl https://twixb.com/api/v1/posts/a6afb505-... \
  -H "X-API-Key: twxb_your_key_here"
```

## Response

Returns the same fields as [List Posts](/api-reference/posts-list), plus:

| Field              | Type   | Description                   |
| ------------------ | ------ | ----------------------------- |
| `content_markdown` | string | Full post content in Markdown |
