Search Group
Use the following parameters to search groups.
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 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
nullReturns ojects that contain the entered member(s).
nullReturns the object that match the entered 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: 40Group search results
Invalid search parameters
GET /groups HTTP/1.1
Host:
X-Ledger-API-Key: YOUR_API_KEY
X-Ledger-API-User: YOUR_API_KEY
Accept: */*
{
"edges": [
{
"cursor": 0,
"node": {
"created_by": 5,
"created_on": "2025-11-14T12:06:46.209Z",
"description": "group of trusted validators",
"id": 1,
"last_request": 3,
"members": [
11,
12
],
"name": "validators",
"status": "ACTIVE"
}
}
],
"page_info": {
"count": 1,
"has_next_page": false
}
}Last updated