Skip to main content
GET
/
carousels
List carousels
curl --request GET \
  --url https://app.autoposting.ai/api-proxy/carousels \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "carousels": [
      {
        "id": "car_01HXYZ",
        "title": "5 Growth Hacks for 2025",
        "brandSlug": "acme-corp",
        "slideCount": 6,
        "status": "draft",
        "createdAt": "2024-01-01T00:00:00Z"
      }
    ],
    "total": 1
  }
}

Authorizations

Authorization
string
header
required

API key as Authorization: Bearer sk-social-...

Query Parameters

brandSlug
string

Filter by brand slug.

Example:

"acme-corp"

limit
number
default:50

Items per page. Default: 50, max: 100.

Required range: x <= 100
Example:

20

offset
number
default:0

Items to skip. Default: 0.

Example:

0

Response

List of carousels

success
boolean
Example:

true

data
object