Search Entity
Use the following parameters to search entities.
If you've set up your API Key when initializing your LAM, you'll need to include it as a header along with the api user header. For more details, see step 5 of the get started documentation.
(required) Username of a registered API User
Filters by account tied to this entity
nullReturns objects created after the entered date.
nullExample: 2020-09-12T14:15:22ZReturns objects created before the entered date.
nullExample: 2020-12-13T16:17:28ZReturns the object corresponding to the entered ID
nullFilters the list by entity name.
nullExample: trading_entity_1Orders the list of results
nullExample: descPossible values: criteria to order by
nullExample: nameDefines the page number to be fetched.
1Example: 3Defines the number of elements displayed on a page. Must be a positive number with 0 and -1 return a maximum defined in the gate
20Example: 40entity search results
invalid search parameters
GET /entities HTTP/1.1
Host:
X-Ledger-API-Key: YOUR_API_KEY
X-Ledger-API-User: YOUR_API_KEY
Accept: */*
{
"edges": [
{
"cursor": 0,
"node": {
"accounts": [
1
],
"created_by": 5,
"created_on": "2025-11-14T17:51:04.788Z",
"id": 1,
"last_request": 3,
"name": "text",
"status": "text"
}
}
],
"page_info": {
"count": 1,
"has_next_page": false
}
}Last updated