Scouting API
List Scouts
List all scouts for this user (excludes one-time tasks).
GET
Returns all scouts for the authenticated user.
Each scout includes lightweight metadata including status (active, paused, or done).
Supports optional cursor-based pagination and status filtering.
If page_size is not provided, returns all scouts.
Advanced Example
Using Pagination and Status Filtering
Using Pagination and Status Filtering
Use cursor-based pagination to efficiently fetch scouts in batches, with optional filtering by status.
Response Format
The response includes pagination metadata and summary statistics:Query Parameters
| Parameter | Type | Description |
|---|---|---|
page_size | integer | Number of scouts per page. If omitted, returns all scouts. |
cursor | string | Cursor from a previous response for pagination. |
status | string | Filter by status: active, paused, or done. |
Authorizations
Query Parameters
Filter by scout status
Available options:
active, paused, done Include scouts created from all sources, not just the API
Response
Successful Response
Total count of all scouts (active + paused + done)
Count of scouts matching the current filter
Counts by status
Requested page size (null if returning all)
Whether more results exist after this page
Cursor for previous page
Cursor for next page