Posts

Get post

Fetch a single post by ID. For published posts, this returns platformPostUrl for each platform.

get/v1/posts/{postId}

Path parameters

postIdstring required

Response

Post

Example response

{
  "post": {
    "platforms": [
      {
        "platform": "twitter",
        "status": "pending",
        "platformPostId": "1234567890123456789",
        "platformPostUrl": "https://twitter.com/acmecorp/status/1234567890123456789"
      }
    ]
  }
}

Changes