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.
Authentication
Requires an API key in the Authorization header.
Authorization: Bearer YOUR_API_KEY
Query parameters
Filter runs to a specific monitor type. Valid values: email, phone, domain, ip, company, darkweb.If omitted, returns runs across all monitor types.
Number of results to return. Default: 20. Max: 100.
Number of results to skip for pagination. Default: 0.
Example request
# All runs for phone monitors
curl "https://encrata.com/api/monitoring/runs?type=phone&limit=10" \
-H "Authorization: Bearer YOUR_API_KEY"
Response
Array of run objects with monitor name included.
Total number of matching runs.
Run object
Unique run identifier (UUID).
The monitor this run belongs to.
The monitor’s display name.
Run status: pending, running, success, or failed.
Number of targets processed.
Number of targets with field changes since the previous run.
Credits consumed by this run.
ISO 8601 timestamp when the run started.
ISO 8601 timestamp when the run finished.
ISO 8601 timestamp of run creation.
Example response
{
"runs": [
{
"id": "b2c3d4e5-...",
"monitor_id": "a1b2c3d4-...",
"monitor_name": "VIP Phone Tracker",
"status": "success",
"total_records": 25,
"changes_detected": 3,
"credits_used": 25,
"started_at": "2026-05-10T08:00:00Z",
"completed_at": "2026-05-10T08:02:15Z",
"created_at": "2026-05-10T08:00:00Z"
}
],
"total": 1
}