Skip to main content
Schedule

List all scheduled posts

GET/v1/posts/scheduled/

Authorization

accessKey
x-access-key<token>

In: header

Response Body

application/json

curl -X GET "https://api.postpeer.dev/v1/posts/scheduled/"
{
  "success": true,
  "posts": [
    {
      "postId": "string",
      "content": "string",
      "scheduledFor": "2019-08-24T14:15:22Z",
      "timezone": "string",
      "mediaItems": [
        {
          "type": "image",
          "url": "http://example.com",
          "thumbnail": "http://example.com"
        }
      ],
      "platforms": [
        {
          "platform": "twitter",
          "status": "draft"
        }
      ],
      "createdAt": "2019-08-24T14:15:22Z"
    }
  ]
}