Skip to main content
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
  }
}

Documentation Index

Fetch the complete documentation index at: https://cut.pro/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Query Parameters

page
number

Page number (default: 1)

Required range: x >= 1
limit
number

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

Required range: 1 <= x <= 100
status
enum<string>
Available options:
pending,
processing,
completed,
partial,
failed

Response

200 - application/json

Response for status 200

posts
object[]
required
pagination
object
required
Last modified on May 27, 2026