Pular para o conteúdo principal
GET
/
posts
List posts
curl --request GET \
  --url https://api.cut.pro/api/v1/posts \
  --header 'X-Api-Key: <api-key>'
{
  "posts": [
    {
      "id": "<string>",
      "scheduled_at": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "item_count": 123,
      "items": [
        {
          "id": "<string>",
          "connection_id": "<string>",
          "edit_id": "<string>",
          "render_id": "<string>",
          "published_url": "<string>",
          "error_code": "<string>",
          "created_at": "<string>",
          "updated_at": "<string>",
          "posted_at": "<string>"
        }
      ]
    }
  ],
  "pagination": {
    "current_page": 123,
    "total_pages": 123,
    "total_count": 123,
    "has_next_page": true,
    "has_previous_page": true,
    "limit": 123
  }
}

Autorizações

X-Api-Key
string
header
obrigatório

Parâmetros de consulta

page
number

Page number (default: 1)

Intervalo obrigatório: x >= 1
limit
number

Items per page (default: 20, max: 100)

Intervalo obrigatório: 1 <= x <= 100
status
enum<string>
Opções disponíveis:
pending,
processing,
completed,
partial,
failed

Resposta

200 - application/json

Response for status 200

posts
object[]
obrigatório
pagination
object
obrigatório
Última modificação em 6 de junho de 2026