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
Path parameters
The monitor’s unique identifier (UUID).
The run’s unique identifier (UUID).
Query parameters
Set to true to only return records with detected changes. Default: false.
Example request
curl "https://encrata.com/api/monitors/a1b2c3d4-.../runs/b2c3d4e5-.../results?changes_only=true" \
-H "Authorization: Bearer YOUR_API_KEY"
Response
Returns an array of snapshot objects.
The full enriched profile data from this run.
Field-level diff object. Each key is a changed field with old and new values. null if no changes.
Whether this record has any detected changes.
Example response
[
{
"email": "satya@microsoft.com",
"data": { "first_name": "Satya", "company": "Microsoft", "job_role": "CEO", ... },
"changes": {
"job_role": { "old": "CTO", "new": "CEO" }
},
"has_changes": true
}
]
CSV Download
Append /download to the results URL to download as CSV:
curl "https://encrata.com/api/monitors/a1b2c3d4-.../runs/b2c3d4e5-.../results/download" \
-H "Authorization: Bearer YOUR_API_KEY" \
-o results.csv