---
title: "Get post"
description: "Get a single post by its id, with its per-account delivery results."
section: "API reference"
url: https://dravo.dev/docs/api/posts/get
---
# Get post

Fetch a single post by its `id`, with its per-account delivery results
(`platform_post_id`, `platform_post_url`, `warnings`).

#### `GET /v1/posts/{id}`

Get a single post by id, with its per-account delivery results.

**Auth:** API key (`dra_…`) or dashboard JWT

| Field | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `id` | path | string | yes | The post id. |

Response `200`: The post.

```json
{
  "id": "post_2a7f93",
  "status": "published",
  "text": "Shipping Dravo…",
  "platforms": [
    "x",
    "linkedin"
  ],
  "results": [
    {
      "platform": "x",
      "status": "published",
      "platform_post_id": "1890…",
      "platform_post_url": "https://x.com/i/status/1890…",
      "warnings": []
    }
  ],
  "created_at": "2026-06-23T10:15:30Z"
}
```

Errors:

- `404`: Post not found.
