curl --request GET \
--url https://api.example.com/sessions \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"title": "Add rate limiting to auth endpoints",
"model": {
"id": "claude-opus-4-6"
},
"last_message_preview": "Done. I've created the rate limiter and wired it up...",
"created_at": "2026-03-06T14:30:00Z",
"updated_at": "2026-03-06T15:45:00Z"
}
],
"meta": {
"has_more": true
}
}Returns sessions ordered by recency (newest first).
curl --request GET \
--url https://api.example.com/sessions \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"title": "Add rate limiting to auth endpoints",
"model": {
"id": "claude-opus-4-6"
},
"last_message_preview": "Done. I've created the rate limiter and wired it up...",
"created_at": "2026-03-06T14:30:00Z",
"updated_at": "2026-03-06T15:45:00Z"
}
],
"meta": {
"has_more": true
}
}JWT bearer token issued by fabro-web. See the Authentication guide for details.
Maximum number of items to return per page.
1 <= x <= 100Number of items to skip before returning results.
x >= 0