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": "821eab82-7125-40bd-b726-68a3972f7dc0",
"confidence": 0.42,
"created": "2026-02-13T16:47:41.117491",
"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_PgoZiHYuLWHrUXF8Y4ny3q",
"is_portfolio": true,
"last_processed_at": "2026-03-27T16:47:41.117818",
"last_updated": "2026-03-27T16:47:41.117528",
"name": "Company Name Inc.",
"profit_and_loss_layout": null,
"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": "821eab82-7125-40bd-b726-68a3972f7dc0",
"confidence": 0.42,
"created": "2026-02-13T16:47:41.117491",
"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_PgoZiHYuLWHrUXF8Y4ny3q",
"is_portfolio": true,
"last_processed_at": "2026-03-27T16:47:41.117818",
"last_updated": "2026-03-27T16:47:41.117528",
"name": "Company Name Inc.",
"profit_and_loss_layout": null,
"status": "ready"
}
]
}Unique ID generated by Heron
"eus_YSoti9zpK6P3s7jqM3TzTu"
Filter by ID associated with end_user_id field in transactions
"your_end_user_id"
Filter by name associated with end user
"your_end_user_name"
Filter by status of end user
new, ready, processed, reviewed, review_requested, failed, null "reviewed"
Pagination page number
x >= 1Pagination limit per page
1 <= x <= 10000Order to return end users by
last_updated_desc, last_updated_asc, created_desc, created_asc Whether the end user is part of a lending portfolio
true
Whether the to include data sources for each end user
true
Whether to include scorecard metrics for each end user (under field criteria)
true
Was this page helpful?