Media
Get media status
Retrieves the processing status of an uploaded media file. Poll this endpoint after uploading to check when the file is ready to use in drafts.
If no file is received before the upload URL expires (1 hour), the media transitions to 'failed' — create a new media upload and try again.
Required permission: READ access to the social set.
get/v2/social-sets/{social_set_id}/media/{media_id}
Path parameters
social_set_idinteger required
media_idstring uuid required
Response
OK
Example response
{
"file_name": "photo.jpg",
"mime": "image/jpeg",
"status": "ready",
"error_reason": "Unsupported file format",
"media_urls": {
"large": "https://cdn.../resized/...",
"medium": "https://cdn.../resized/...",
"original": "https://cdn.../original/...",
"small": "https://cdn.../resized/..."
}
}