Records
What your assistant collects from customers: orders, bookings and leads. Stream them into your fulfilment or sales tools.
Base URL
https://api.jawbly.com/v1GET
/records/{collection}List records
Page through captured records for a collection, e.g. orders or leads.
Requires scope records:read
Parameters
collectionrequiredstring · path
The record collection, e.g. `orders`.
sincestring (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
}