Get post

View .md

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


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

GET/v1/posts/{id}
API key (dra_…) or dashboard JWT

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

Body & query parameters

idstringpathrequired

The post id.

Error codes

404

Post not found.

const response = await fetch("https://api.dravo.dev/v1/posts/{id}", {  method: "GET",  headers: {  "Authorization": "Bearer " + process.env.DRAVO_API_KEY,}});const data = await response.json();console.log(data);
{  "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"}