---
title: "Get Post by ID"
method: GET
path: "/v1/posts/{id}"
tags: ["Posts"]
---

# Get Post by ID

`GET /v1/posts/{id}`

Returns one post with its caption, media, scheduled time, draft flag and the social accounts it targets. Use list_post_results or the post-results endpoints to see what actually happened on each platform.

## Path parameters

- `id` string, required

## Response `200`

Post retrieved successfully.

- PostDto
  - `id` string, required — Unique identifier of the post
  - `caption` string, required — Caption text for the post
  - `status` 'posted' | 'scheduled' | 'processing' | 'failed', required — Current status of the post: scheduled, processing, or posted
  - `scheduled_at` object, nullable, required — Scheduled date and time for the post
  - `platform_configurations` object, nullable, required — Platform-specific configurations for the post
  - `social_accounts` number[], required — Array of social account IDs associated with the post
  - `account_configurations` object, nullable, required — Account-specific configurations for the post
  - `media` object, nullable, required — Array of media URLs associated with the post
  - `created_at` string, required — Timestamp when the post was created
  - `updated_at` string, required — Timestamp when the post was last updated
  - `is_draft` boolean, required — If true the post will not be processed until updated
  - `warnings` string[] — Warnings about draft behavior — e.g. platforms that will publish immediately when the draft is sent

## Other responses

- `404` — Post not found based on the given ID.
- `500` — Internal server error when fetching the Post.

---

[API](https://skmtc.dev/post-bridge/apis/post-bridge-api.md) · [All operations](https://skmtc.dev/post-bridge/apis/post-bridge-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/post-bridge/post-bridge-api/revisions/97ae826701f6/schema)
