Get post results
GET/posts/:id/results
Returns per-platform publishing results for a post, including published URLs, error messages, attempt counts, and retry schedules.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string (UUID) | Yes | Post UUID |
Response Example
200 — Post results
{
"data": {
"post_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"post_status": "published",
"results": [
{
"id": "d1e2f3a4-b5c6-7890-abcd-ef1234567890",
"platform": "instagram",
"status": "published",
"account_name": "@mybrand",
"account_id": 2280,
"published_at": "2026-04-15T14:30:05.000Z",
"platform_post_id": "17895432678901234",
"platform_post_url": "https://www.instagram.com/p/ABC123/",
"error": null,
"attempts": 1,
"next_retry_at": null
},
{
"id": "e2f3a4b5-c6d7-8901-abcd-ef1234567890",
"platform": "x",
"status": "published",
"account_name": "@mybrand",
"account_id": 2282,
"published_at": "2026-04-15T14:30:03.000Z",
"platform_post_id": "1780123456789012345",
"platform_post_url": "https://x.com/mybrand/status/1780123456789012345",
"error": null,
"attempts": 1,
"next_retry_at": null
},
{
"id": "f3a4b5c6-d7e8-9012-abcd-ef1234567890",
"platform": "linkedin",
"status": "failed",
"account_name": "My Brand Inc.",
"account_id": 2285,
"published_at": null,
"platform_post_id": null,
"platform_post_url": null,
"error": "Token expired. Please reconnect your LinkedIn account.",
"attempts": 3,
"next_retry_at": null
}
]
},
"error": null,
"meta": {
"request_id": "a1b2c3d4",
"timestamp": "2026-04-15T15:00:00.000Z"
}
}
Result object fields
| Field | Type | Description |
|---|---|---|
id | string (UUID) | Destination unique identifier |
platform | string | Platform name (e.g. instagram, x, linkedin) |
status | string | queued, published, or failed |
account_name | string or null | Account username or display name |
account_id | integer or null | Account ID |
published_at | string (ISO 8601) or null | When the post was published on this platform |
platform_post_id | string or null | The platform's native post ID |
platform_post_url | string or null | Direct URL to the published post on the platform |
error | string or null | Error message if the destination failed |
attempts | integer | Number of publish attempts made |
next_retry_at | string (ISO 8601) or null | When the next retry is scheduled (if retrying) |
Request
Responses
- 200
- 401
- 404
- 429
Post results
Missing or invalid API key
Resource not found
Rate limit exceeded
Response Headers
X-RateLimit-Limit
Request limit per window
X-RateLimit-Remaining
Remaining requests in current window
X-RateLimit-Reset
Unix timestamp when the window resets
Retry-After
Seconds to wait before retrying