limit and offset query parameters on list endpoints.
Parameters
limit: number of items to return (default: 50, max: 50)offset: number of items to skip (default: 0, max: 500)
limit, 0 for offset).
Example
offset by limit.
Caps
All list endpoints enforce the same caps:| Parameter | Default | Maximum |
|---|---|---|
limit | 50 | 50 |
offset | 0 | 500 |
since parameter to filter by time instead of paginating deeply.
Cursor-Based Pagination
For large result sets that exceed offset limits, radar and signal endpoints support cursor-based pagination via thecursor and next_cursor fields.
How It Works
- Make a normal request with
since(and optionallylimit). - If the response includes a non-null
next_cursor, more results are available. - Pass
next_cursoras thecursorquery parameter on your next request, along with the samesincevalue. - Repeat until
next_cursorisnull.
cursor is provided, offset is ignored.
Example
Details
- The cursor is a base64url-encoded JSON token. Treat it as opaque — do not decode or modify it.
- The
sinceparameter is required when usingcursor. The cursor is bound to the original query context; changingsincebetween pages will return an error. offsetis ignored whencursoris present.- When
next_cursorisnull, you have reached the end of the result set.