Pagination
List endpoints accept limit (1–100, default 25) and offset (default 0). Responses include items and total.
curl -s 'https://api.circa.ai/public/materials?limit=50&offset=100' \
-H 'x-api-key: circa_live_xxx'200OK
{
"items": [ /* up to 50 records */ ],
"total": 12453
}For large collections, iterate with stable offset values and cap parallelism to stay under the rate limit.