/nft/sales-historynft-salesHistoryReturns per-token NFT sale rollups, bucketed hourly or daily — min sale price (as a proxy floor), total XRP volume, and sale count per bucket. Pass tokenId to scope to a single NFT; omit for network-wide sales.
| 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 |
|---|---|---|---|
cursor | string | ||
limit | integer | 20 | |
tokenId | string | ||
interval | enum<string> | "daily" | Available hourlydaily |
startTime | integer | ||
endTime | integer |
| Field | Type | Description |
|---|---|---|
items | object[] | Page of results. |
items[]. | string | |
items[]. | integer | Bucket start timestamp, Unix-seconds. |
items[]. | object | Minimum XRP-denominated sale price in the bucket; NULL when no XRP sales occurred. |
items[]. | string | Sum of XRP-denominated sale amounts in the bucket. |
items[]. | integer | Total sales (any currency). |
items[]. | integer | XRP-denominated sales only. |
nextCursor | object | Cursor to fetch the next page, or null if this is the last page. |
{
"items": [
{
"tokenId": "string",
"bucket": 1745798400,
"floorPriceXrp": "string",
"volumeXrp": "string",
"tradeCount": 0,
"tradeCountXrp": 0
}
],
"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": []
}