Search Whitelist
Use the following parameters to search whitelists.
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
Returns the whitelists used in the specified account's governance rules.
nullFilters the list by address.
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 objects that contain the entered description.
nullReturns the object corresponding to the entered ID
nullFilters the list by whitelist name.
nullOrders 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: 40Whitelist search results
Invalid search parameters
GET /whitelists HTTP/1.1
Host:
X-Ledger-API-Key: YOUR_API_KEY
X-Ledger-API-User: YOUR_API_KEY
Accept: */*
{
"edges": [
{
"cursor": 0,
"node": {
"addresses": [
{
"address": "tb1qrdw2mrllkm4lfjgnxeqz0yzjg6835sfyualdhy",
"currency": "bitcoin_testnet",
"destination_tag": null,
"id": 3,
"name": "main account"
},
{
"address": "mmWpcbXNXoKMjc6Q3WjPSxj4JbpLhAFotF",
"currency": "bitcoin_testnet",
"destination_tag": null,
"id": 4,
"name": "second account"
}
],
"created_by": 5,
"created_on": "2025-11-14T09:14:07.697Z",
"description": "our own accounts",
"id": 1,
"last_request": 3,
"name": "internal accounts",
"status": "ACTIVE"
}
}
],
"page_info": {
"count": 1,
"has_next_page": false
}
}Last updated