SightRadardocs
API referenceCollections

List collections

Lists your collections, newest first, paged via limit/offset. (GET /v1/collections)

GET/v1/collections
Auth
Bearer API key
Billing
free (0 credits).

Lists your collections, newest first, paged via limit/offset. Pass q to filter by a case-insensitive substring of the collection ID. Returns the matching total so clients can paginate accurately. Free.

Example request

curl -X GET "https://api.sightradar.com/v1/collections" \
  -H "Authorization: Bearer $SR_API_KEY"

Parameters

NameInTypeDescription
limitqueryinteger
offsetqueryinteger
qquerystringCase-insensitive LITERAL substring filter on collection_id (max 100 chars; wildcard characters are matched literally).

Response body

FieldTypeDescription
collectionsobject[]
totalintegerTotal collections matching the filter (ignores limit/offset).
limitinteger
offsetinteger

Status codes

StatusMeaning
200Your collections.
401Missing or invalid API key.
Last updated

On this page