Skip to main content
GET
/
api
/
v1
/
projects
/
{project_id}
/
posts
List Posts
curl --request GET \
  --url https://api.example.com/api/v1/projects/{project_id}/posts \
  --header 'Authorization: Bearer <token>'
{
  "data": {},
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
string
required

Query Parameters

skip
integer
default:0
limit
integer
default:100
schedule_date_from
string<date-time> | null

Start of ScheduleDate range (inclusive), ISO datetime

schedule_date_to
string<date-time> | null

End of ScheduleDate range (inclusive), ISO datetime

platforms
string[] | null

Filter by platforms (e.g. INSTAGRAM, FACEBOOK)

status
string[] | null

Filter by status (e.g. DRAFT, SCHEDULED, PUBLISHED)

Response

Successful Response

success
boolean
required
data
unknown