Skip to main content

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

ParameterTypeRequiredDescription
idstring (UUID)YesPost 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

FieldTypeDescription
idstring (UUID)Destination unique identifier
platformstringPlatform name (e.g. instagram, x, linkedin)
statusstringqueued, published, or failed
account_namestring or nullAccount username or display name
account_idinteger or nullAccount ID
published_atstring (ISO 8601) or nullWhen the post was published on this platform
platform_post_idstring or nullThe platform's native post ID
platform_post_urlstring or nullDirect URL to the published post on the platform
errorstring or nullError message if the destination failed
attemptsintegerNumber of publish attempts made
next_retry_atstring (ISO 8601) or nullWhen the next retry is scheduled (if retrying)

Request

Responses

Post results