/amm/{ammId}/holderspool-listHoldersReturns LP-token holders for the given pool, ordered by descending balance. share_pct is the holder's share of the pool's lp_token_supply as a percentage decimal.
| Name | Location | Details |
|---|---|---|
BearerAuth | Authorization header · bearer | JWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`. |
| Name | Type | Default | Description |
|---|---|---|---|
ammIdrequired | string | AMM account identifier (XRPL classic address). |
| Name | Type | Default | Description |
|---|---|---|---|
cursor | string | ||
limit | integer | 20 |
| Field | Type | Description |
|---|---|---|
items | object[] | Page of results. |
items[]. | string | XRPL classic address of the LP-token holder. |
items[]. | string | Current LP-token balance, decimal string. |
items[]. | object | Holder's share of total LP supply, as a percentage decimal string. NULL when total LP supply is zero / unknown. |
nextCursor | object | Cursor to fetch the next page, or null if this is the last page. |
{
"items": [
{
"account": "string",
"balance": "string",
"share_pct": "string"
}
],
"nextCursor": "string"
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "BAD_REQUEST",
"message": "Invalid input data",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "UNAUTHORIZED",
"message": "Authorization not provided",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "FORBIDDEN",
"message": "Insufficient access",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "NOT_FOUND",
"message": "Not found",
"issues": []
}| Field | Type | Description |
|---|---|---|
message | string | The error message |
code | string | The error code |
issues | object[] | An array of issues that were responsible for the error |
issues[]. | string |
{
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal server error",
"issues": []
}