Back

Get Posts

GET/posts

Authorization

AuthorizationBearer <token>

API key authentication - use your API key as a Bearer token

In: header

Request Body

status?string

Filter by post status (query parameter)

platform?string

Filter by target platform (query parameter)

profileId?string

Filter by profile ID (query parameter)

Response Body

> 200application/json
// GET /posts
// See cURL example for request shape.
[
  {
    "id": "post_123",
    "status": "scheduled",
    "createdAt": "2026-03-25T10:00:00Z",
    "updatedAt": "2026-03-25T10:00:00Z",
    "platforms": [],
    "media": []
  }
]