Skip to main content
GET
/
v1
/
posts
/
{id}
curl https://api.infinipost.co/v1/posts/post_abc123 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "post_abc123",
  "accountId": "acc_123",
  "platform": "tiktok",
  "contentType": "video",
  "caption": "Check out this amazing content! #viral",
  "status": "posted",
  "stats": {
    "views": 12847,
    "likes": 892,
    "comments": 47,
    "shares": 23
  },
  "scheduledTime": "2024-04-22T12:00:00Z",
  "postedAt": "2024-04-22T12:00:15Z",
  "createdAt": "2024-04-21T20:15:00Z"
}

Path Parameters

id
string
required
The unique post identifier.

Response

id
string
Post identifier.
accountId
string
Associated account ID.
platform
string
Platform (tiktok or instagram).
contentType
string
video or slideshow.
caption
string
Post caption.
status
string
Status: scheduled, posted, failed.
stats
object
Post performance metrics.
postedAt
string
ISO 8601 timestamp of when posted (if status is posted).
curl https://api.infinipost.co/v1/posts/post_abc123 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "post_abc123",
  "accountId": "acc_123",
  "platform": "tiktok",
  "contentType": "video",
  "caption": "Check out this amazing content! #viral",
  "status": "posted",
  "stats": {
    "views": 12847,
    "likes": 892,
    "comments": 47,
    "shares": 23
  },
  "scheduledTime": "2024-04-22T12:00:00Z",
  "postedAt": "2024-04-22T12:00:15Z",
  "createdAt": "2024-04-21T20:15:00Z"
}