/nft/offersnft-offersReturns offers on a given NFToken, ordered newest-first. Set isSellOffer=true for sell-side offers only, false for buy-side only, or omit to receive both. Offers that have been accepted or cancelled are still included; filter client-side on the offer status field if you only want open offers.
| 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 | |
tokenIdrequired | string | XRPL NFToken identifier (hex). | |
isSellOffer | boolean |
| Field | Type | Description |
|---|---|---|
items | object[] | Page of results. |
items[]. | string | Auto-generated UUID primary key. |
items[]. | string | On-ledger NFTokenOffer object ID. |
items[]. | string | NFTokenID this offer targets. |
items[]. | string | XRPL address that created the offer. |
items[]. | boolean | True for sell offers, false for buy offers. |
items[]. | string | Offer price, decimal string. |
items[]. | string | Currency code of the offer price ("XRP" by default). |
items[]. | object | |
items[]. | object | |
items[]. | object | When the offer becomes invalid, Unix-seconds. |
items[]. | integer | Ledger sequence where the offer was created. |
items[]. | string | Hash of the NFTokenCreateOffer transaction. |
items[]. | boolean | Offer was explicitly cancelled by its owner. |
items[]. | boolean | Offer was accepted via NFTokenAcceptOffer. |
items[]. | integer | Record creation timestamp, Unix-seconds. |
items[]. | integer | Record update timestamp, Unix-seconds. |
nextCursor | object | Cursor to fetch the next page, or null if this is the last page. |
{
"items": [
{
"id": "00000000-0000-0000-0000-000000000000",
"offerId": "string",
"tokenId": "string",
"owner": "string",
"isSellOffer": false,
"amount": "string",
"currency": "string",
"issuer": "string",
"destination": "string",
"expiration": 1745798400,
"ledgerIndex": 0,
"txHash": "string",
"cancelled": false,
"accepted": false,
"createdAt": 1745798400,
"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": []
}