Documentation Index
Fetch the complete documentation index at: https://docs.encrata.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
List endpoints that return multiple items support pagination usinglimit and offset query parameters.
Parameters
| Parameter | Type | Default | Max | Description |
|---|---|---|---|---|
limit | integer | 20 | 100 | Number of items to return |
offset | integer | 0 | — | Number of items to skip |
Contact list endpoints currently return all items without pagination.
Response format
Paginated responses include atotal field alongside the data array:
Paginated endpoints
| Endpoint | Array field | Default limit | Max limit |
|---|---|---|---|
GET /api/agent/monitors/{id}/runs | runs | 20 | 100 |
GET /api/agent/monitors/{id}/runs/{runId}/results | results | 20 | 100 |
GET /api/agent/monitoring/runs | runs | 20 | 100 |
GET /api/agent/monitoring/results | results | 20 | 100 |
Example
Fetch the second page of monitor runs (items 21–40):Iterating through all pages
Filtering
Some endpoints support additional query filters alongside pagination:| Parameter | Endpoints | Description |
|---|---|---|
type | /monitoring/runs, /monitoring/results | Filter by monitor type (email, domain, ip, etc.) |
changes_only | /runs/{id}/results, /monitoring/results | Only return items with detected changes |