Skip to main content
GET
Returns scouting tasks created with the API 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 matching scouts.

Advanced Example

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

Authorizations

x-api-key
string
header
required

Query Parameters

status
enum<string> | null

Filter by scout status

Available options:
active,
paused,
done
page_size
integer | null
cursor
string | null

Response

Successful Response

scouts
ScoutListItem · object[]
required
total
integer
default:0

Total count of all scouts (active + paused + done)

filtered_total
integer
default:0

Count of scouts matching the current filter

summary
ScoutsSummary · object | null

Counts by status

page_size
integer | null

Requested page size (null if returning all)

has_more
boolean
default:false

Whether more results exist after this page

prev_cursor
string | null

Cursor for previous page

next_cursor
string | null

Cursor for next page