Get Post Status
Check Post Status
Endpoint
Base URL: https://backend.blotato.com/v2
URL: /posts/:postSubmissionId
Method: GET
Rate Limit: 60 requests / minute
Description
Poll this endpoint to check the publishing status of a post. After submitting a post with Create Post, use the returned postSubmissionId to track its progress.
Request
Path Parameters
postSubmissionId
string
Yes
The post submission ID returned by the Create Post endpoint.
Responses
Success Response
Status Code: 200 OK
The response shape depends on the current status:
Published (terminal - success):
Failed (terminal - error):
In Progress (keep polling):
Scheduled (queued for a future time):
Response Keys
postSubmissionId
string
The post submission ID.
status
string
One of: in-progress, scheduled, published, failed.
scheduledTime
string
The scheduled publish time. Present when status is scheduled.
publicUrl
string
The live URL of the published post. Present when status is published.
errorMessage
string
Description of the failure. Present when status is failed.
Polling Strategy
Poll every 2 seconds after submitting a post.
Continue while status is
in-progress.If status is
scheduled, the post is queued for the returnedscheduledTime.Stop when status is
published(success) orfailed(error).Do not retry on
failed-- most failures are permanent. CheckerrorMessagefor details.
Failed posts are also visible at https://my.blotato.com/failed.
Example
Last updated