Skip to main content
GET
/
v1
/
models
/
slidelayer
List slidelayer
curl --request GET \
  --url https://api.abloatai.com/v1/models/slidelayer \
  --header 'Authorization: Bearer <token>'
{
  "object": "<string>",
  "model": "<string>",
  "data": [
    {
      "slideId": "<string>",
      "isOverride": false,
      "zIndex": 0,
      "visible": true,
      "locked": false,
      "position": {
        "x": 123,
        "y": 123,
        "width": 123,
        "height": 123,
        "rotation": 123
      },
      "id": "<string>",
      "layoutLayerId": "<string>",
      "style": null,
      "data": null,
      "imageFill": {
        "url": "<string>",
        "attachmentId": "<string>",
        "width": 123,
        "height": 123,
        "crop": {
          "x": 123,
          "y": 123,
          "zoom": 123
        },
        "srcRect": {
          "l": 123,
          "t": 123,
          "r": 123,
          "b": 123
        }
      },
      "contentJson": {
        "type": "<string>",
        "content": [
          "<unknown>"
        ]
      },
      "contentHtml": "<string>",
      "plainText": "<string>",
      "groupId": "<string>",
      "metadata": "<string>"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>",
  "stamp": 123
}

Authorizations

Authorization
string
header
required

API key (sk_live_…) or a scoped capability token. The same header carries both — the server discriminates by token shape.

Query Parameters

limit
integer
default:20

Page size (default 20, max 100).

Required range: 1 <= x <= 100
order
enum<string>

Sort direction (default asc).

Available options:
asc,
desc
order_by
string

Column to order by (default "id").

starting_after
string

Cursor from a prior page (next_cursor).

Response

200 - application/json

A page of slidelayer records.

object
string
Allowed value: "list"
model
string
Allowed value: "slidelayer"
data
object[]
has_more
boolean
next_cursor
string | null
stamp
integer