Skip to main content
GET
/
posts
List posts
curl --request GET \
  --url https://api.postiz.com/public/v1/posts \
  --header 'Authorization: <api-key>'
{
  "posts": [
    {
      "id": "<string>",
      "content": "<string>",
      "publishDate": "2023-11-07T05:31:56Z",
      "releaseURL": "<string>",
      "state": "QUEUE",
      "integration": {
        "id": "<string>",
        "providerIdentifier": "<string>",
        "name": "<string>",
        "picture": "<string>"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Your Postiz API key

Query Parameters

startDate
string<date-time>
required

Start date in UTC ISO format

endDate
string<date-time>
required

End date in UTC ISO format

customer
string

Filter by customer ID

Response

200 - application/json

List of posts

posts
object[]