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": [
{
"confidence": 0.42,
"created": "2025-07-15T06:13:09.935486",
"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": "<any>"
}
],
"data_sources": [
{
"status": "new",
"type": "pdf"
}
],
"end_user_id": "f7d64019-5aad-4bc6-8627-94595c7a48ad",
"heron_id": "eus_NcYYpVX7uSgU6TvjbbXzHu",
"is_portfolio": true,
"last_processed_at": "2025-08-26T06:13:09.935686",
"last_updated": "2025-08-26T06:13:09.935513",
"name": "Company Name Inc.",
"profit_and_loss_layout": "<any>",
"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": [
{
"confidence": 0.42,
"created": "2025-07-15T06:13:09.935486",
"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": "<any>"
}
],
"data_sources": [
{
"status": "new",
"type": "pdf"
}
],
"end_user_id": "f7d64019-5aad-4bc6-8627-94595c7a48ad",
"heron_id": "eus_NcYYpVX7uSgU6TvjbbXzHu",
"is_portfolio": true,
"last_processed_at": "2025-08-26T06:13:09.935686",
"last_updated": "2025-08-26T06:13:09.935513",
"name": "Company Name Inc.",
"profit_and_loss_layout": "<any>",
"status": "ready"
}
]
}
Order 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
Pagination page number
x >= 1
Filter by name associated with end user
"your_end_user_name"
Pagination limit per page
1 <= x <= 10000
Unique ID generated by Heron
"eus_86r7phkbnvzs3UioMeRR9j"
Filter by ID associated with end_user_id field in transactions
"your_end_user_id"
Filter by status of end user
new
, ready
, processed
, reviewed
, review_requested
, failed
"reviewed"
OK
The response is of type object
.
Was this page helpful?