REST APIGET
Get Post
Retrieve a single post by ID with full platform details
GET
https://post.adaptlypost.com/post/api/v1/social-posts/:idReturns the full details of a specific post, including per-platform status, published URLs, and error messages if any platform failed.
API Key (Bearer token)
Platform Status
Each platform in the platforms array has its own status. A post's top-level status reflects the aggregate — it will be COMPLETED if at least one platform succeeded, PARTIAL_FAILURE if some platforms failed, and FAILED only if all platforms failed.
Get a social post
curl --request GET \
--url https://post.adaptlypost.com/post/api/v1/social-posts/post_xyz789 \
--header 'Authorization: Bearer <api-key>'200
{
"id": "post_xyz789",
"contentType": "IMAGE",
"text": "Check out our new product launch!",
"status": "COMPLETED",
"scheduledAt": "2026-03-14T14:00:00Z",
"timezone": "America/New_York",
"platforms": [
{
"id": "pp_001",
"platform": "TWITTER",
"status": "PUBLISHED",
"accountName": "@yourhandle",
"platformPostId": "1234567890",
"publishedAt": "2026-03-14T14:00:02Z"
},
{
"id": "pp_002",
"platform": "LINKEDIN",
"status": "FAILED",
"accountName": "Your Company",
"errorMessage": "Image format not supported"
}
],
"createdAt": "2026-03-14T13:55:00Z",
"updatedAt": "2026-03-14T14:00:10Z"
}