curl --request GET \
--url https://app.herondata.io/api/end_users \
--header 'x-api-key: <api-key>'{
"_meta": {
"limit": 1000,
"next_url": "<string>",
"page": 1,
"pages": 3,
"prev_url": "<string>",
"total": 3500
},
"end_users": [
{
"end_user_id": "01401b6f-2399-47ee-aabe-744e8022ddfa",
"confidence": 0.42,
"created": "2025-11-09T16:03:58.689481",
"criteria": [
{
"context": "higher_is_better",
"currency": "<string>",
"date_range": "last_180_days",
"description": "The number of unique transactions with a timestamp",
"group": "data_quality",
"label": "unique_transactions",
"status": "not_available",
"unit": "n",
"value": 42.42
}
],
"data_sources": [
{
"type": "pdf",
"status": "new"
}
],
"heron_id": "eus_C6jieqw8WGKuQnF9JZhSJB",
"is_portfolio": true,
"last_processed_at": "2025-12-21T16:03:58.689744",
"last_updated": "2025-12-21T16:03:58.689515",
"name": "Company Name Inc.",
"profit_and_loss_layout": "<unknown>",
"status": "ready"
}
]
}Get a list of EndUsers
curl --request GET \
--url https://app.herondata.io/api/end_users \
--header 'x-api-key: <api-key>'{
"_meta": {
"limit": 1000,
"next_url": "<string>",
"page": 1,
"pages": 3,
"prev_url": "<string>",
"total": 3500
},
"end_users": [
{
"end_user_id": "01401b6f-2399-47ee-aabe-744e8022ddfa",
"confidence": 0.42,
"created": "2025-11-09T16:03:58.689481",
"criteria": [
{
"context": "higher_is_better",
"currency": "<string>",
"date_range": "last_180_days",
"description": "The number of unique transactions with a timestamp",
"group": "data_quality",
"label": "unique_transactions",
"status": "not_available",
"unit": "n",
"value": 42.42
}
],
"data_sources": [
{
"type": "pdf",
"status": "new"
}
],
"heron_id": "eus_C6jieqw8WGKuQnF9JZhSJB",
"is_portfolio": true,
"last_processed_at": "2025-12-21T16:03:58.689744",
"last_updated": "2025-12-21T16:03:58.689515",
"name": "Company Name Inc.",
"profit_and_loss_layout": "<unknown>",
"status": "ready"
}
]
}Filter by name associated with end user
"your_end_user_name"
Filter by status of end user
new, ready, processed, reviewed, review_requested, failed, "reviewed"
Filter by ID associated with end_user_id field in transactions
"your_end_user_id"
Pagination page number
x >= 1Order to return end users by
last_updated_desc, last_updated_asc, created_desc, created_asc Pagination limit per page
1 <= x <= 10000Whether the to include data sources for each end user
true
Whether to include scorecard metrics for each end user (under field criteria)
true
Unique ID generated by Heron
"eus_HKrcmyRyJuW5wZKbws8r7U"
Whether the end user is part of a lending portfolio
true
Was this page helpful?