Skip to main content
GET
/
posts
/
{id}
Get a post
curl --request GET \
  --url https://api.marketordie.io/v1/posts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "channel": "<string>",
    "posts": [
      {
        "text": "<string>"
      }
    ],
    "scheduled_for": "2023-11-07T05:31:56Z",
    "published_urls": [
      "<string>"
    ],
    "error": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Your API key as a bearer token: Authorization: Bearer mod_live_…. (You can also send it as x-api-key.)

Path Parameters

id
string
required

Response

OK

data
object