Skip to main content
GET
/
social
/
post
/
track
/
{tracking_id}
Get Tracked Social Post
curl --request GET \
  --url https://api.example.com/social/post/track/{tracking_id}
Returns the tracked post record stored in scheduled_social_posts_v2. Use the tracking_id returned by POST /social/post.

Request

curl -X GET "https://api.mosaic.so/social/post/track/[tracking_id]" \
  -H "Authorization: Bearer mk_your_api_key"

Response

{
  "tracking_id": "2d8ca860-f8e0-4f3f-9f2c-337ead6ed91e",
  "provider_post_id": "1c08fd57-f0b0-4d10-bf7a-1df2e03c1a96",
  "status": "posted",
  "scheduled_at": "2026-03-10T16:00:00Z",
  "platforms": ["x", "linkedin"],
  "links": [
    {
      "platform": "x",
      "post_url": "https://x.com/usemosaic_ai/status/123"
    }
  ],
  "results": [
    {
      "platform": "x",
      "status": "success",
      "post_id": "1901625213503277588",
      "post_url": "https://x.com/usemosaic_ai/status/123",
      "message": null
    }
  ],
  "error": null,
  "created_at": "2026-03-10T16:00:00.000Z",
  "updated_at": "2026-03-10T16:00:09.000Z"
}