Skip to main content
GET
/
v1
/
models
/
{model}
/
{id}
Retrieve a record
curl --request GET \
  --url https://api.abloatai.com/v1/models/{model}/{id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "<string>",
  "model": "<string>",
  "data": {},
  "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.

id
string
required

The record id.

Response

The record, wrapped in a read envelope.

Read envelope returned by retrieve.

object
string
Allowed value: "record"
model
string
data
object

A stored record: your fields plus the server-managed system fields.

stamp
integer

Sync watermark; pass back as readAt for stale-safe writes.