Skip to main content
GET
/
entities
/
{id}
/
monitoring
/
history
Get entity monitoring history
curl --request GET \
  --url http://api.gu1.ai/entities/{id}/monitoring/history \
  --header 'Authorization: Bearer <token>'

Documentation Index

Fetch the complete documentation index at: https://docs.gu1.ai/llms.txt

Use this file to discover all available pages before exploring further.

GET http://api.gu1.ai/entities/{id}/monitoring/history

Authentication

Authorization: Bearer YOUR_API_KEY
Requires read permission on the entity.

Path parameters

id
string
required
Entity UUID.

Query

tab
string
required
  • subscriptions — watchlist lifecycle (activated/deactivated).
  • changes — snapshots and periodic screening detections.
limit
integer
Page size (default 20, max 100).
offset
integer
Pagination offset.
integrationCode
string
Optional. Defaults to the Gu1 sanctions enrichment integration code.
currentlyOnWatchlist
string
Only with tab=subscriptions. Use 1, true, or yes to include open active ranges.

Examples

curl -sS "http://api.gu1.ai/entities/{id}/monitoring/history?tab=subscriptions&limit=20&offset=0" \
  -H "Authorization: Bearer YOUR_API_KEY"

curl -sS "http://api.gu1.ai/entities/{id}/monitoring/history?tab=changes&limit=20&offset=0" \
  -H "Authorization: Bearer YOUR_API_KEY"