Skip to main content
GET
List Query Runs
Returns a paginated list of query runs in your workspace. Each result includes the associated prompt text, topic name, and brands mentioned in the AI response.

Parameters

string
required
Bearer token. Format: Bearer slat_<your-token>.
integer
Page number (0-indexed). Default: 0.
integer
Number of results per page. Default: 10.
string
Field to sort by. Default: startedAt.
string
Sort direction. One of: asc, desc. Default: desc.
string
Filter by run status (e.g., COMPLETED, FAILED, PENDING).
string[]
Filter by one or more platforms: CHATGPT, PERPLEXITY, GOOGLE_AI_OVERVIEW, GOOGLE_AI_MODE, GEMINI, CLAUDE.
number
Filter by topic ID.
number
Filter by prompt ID.
number
Filter by brand ID.
string
Filter by ISO 3166-1 alpha-2 country code (e.g., US).
Search by prompt text. Case-insensitive partial match.
integer
Filter to runs from the last N days.
string
Start of date range filter. ISO 8601 format (e.g., 2026-02-01T00:00:00Z).
string
End of date range filter. ISO 8601 format. Must be after from if both are provided.

Response

Returns 200 OK with a paginated list of query runs.
object[]
required
Array of query run objects with prompt and topic info.
integer
required
Total number of query runs matching the filters.
integer
required
Total number of pages.
integer
required
Current page number (0-indexed).
integer
required
Page size.

Example

Response

Page numbering starts at 0. Default sort is by startedAt descending (most recent first).

Status codes

What’s next