JawblyJawblyDocs
API reference

Records

What your assistant collects from customers: orders, bookings and leads. Stream them into your fulfilment or sales tools.

Base URLhttps://api.jawbly.com/v1
For agents: llms.txt·OpenAPI
GET/records/{collection}

List records

Page through captured records for a collection, e.g. orders or leads.

Requires scope records:read

Parameters

collectionrequired
string · path

The record collection, e.g. `orders`.

since
string (ISO 8601) · query

Only records created after this time.

curl -X GET "https://api.jawbly.com/v1/records/{collection}" \
  -H "Authorization: Bearer jwb_live_xxxxxxxxxxxxxxxxxxxxxxxx"
200 response
{
  "data": [
    {
      "id": "rec_44…",
      "collection": "orders",
      "fields": {
        "item": "Blue jacket",
        "qty": 1
      },
      "createdAt": "2026-07-07T10:14:00Z"
    }
  ],
  "nextCursor": null
}