Skip to main content
GET
/
v1
/
models
/
{model}
List records
curl --request GET \
  --url https://api.abloatai.com/v1/models/{model} \
  --header 'Authorization: Bearer <token>'
{
  "object": "<string>",
  "model": "<string>",
  "data": [
    {}
  ],
  "has_more": true,
  "next_cursor": "<string>",
  "stamp": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

model
string
required

The model name from your pushed schema (e.g. tasks). The HTTP model API is generated from your own schema — these paths are generic over every model you define.

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

A page of records.

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