/accounts/{address}/networkaccount-listCounterpartiesReturns the set of addresses this account has transacted with, ordered by most recent interaction.
| 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 |
|---|---|---|---|
addressrequired | string | Account whose counterparties to list. |
| Name | Type | Default | Description |
|---|---|---|---|
cursor | string | ||
limit | integer | 20 |
| Field | Type | Description |
|---|---|---|
items | object[] | Page of results. |
items[]. | string | Source account in the ordered pair (PK part). |
items[]. | string | Destination account in the ordered pair (PK part). |
items[]. | integer | First interaction timestamp, Unix-seconds. |
items[]. | integer | Last interaction timestamp, Unix-seconds. |
items[]. | integer | Number of observed interactions between the pair. |
items[]. | integer | Cumulative XRP volume flowing from `from_account` to `to_account`, in drops. |
items[]. | object | |
items[]. | integer | Record update timestamp, Unix-seconds. |
nextCursor | object | Cursor to fetch the next page, or null if this is the last page. |
{
"items": [
{
"fromAccount": "string",
"toAccount": "string",
"firstInteractionAt": 1745798400,
"lastInteractionAt": 1745798400,
"interactionCount": 0,
"dropsVolume": 0,
"txTypes": [
"string"
],
"updatedAt": 1745798400
}
],
"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": []
}