Skip to main content

Ripple NFT Token Offers API

Explore NFT token offer data on the XRP Ledger — filter by sender, receiver, currency, and offer amount using the Bitquery GraphQL API.

Get XRP Ledger NFT Token Offers from a Specific Transaction Sender

Look up all NFT token offers sent by a given address on XRPL. Returns the offer currency, native and USD amounts, destination account, and operation type for each offer — useful for tracking NFT marketplace activity for address rBEARbo4Prn33894evmvYcAf9yAQjp4VJF.

Variations: Narrow results by operation type (e.g., buy vs. sell offers), add date ranges, or pivot the filter to destinationAccount. See query features for pagination and sorting options.

Open this query on IDE

query ($network: RippleNetwork!, $limit: Int!, $offset: Int!, $from: ISO8601DateTime, $till: ISO8601DateTime, $address: String!) {
ripple(network: $network) {
nftokenOffers(
options: {asc: "timestamp.time", limit: $limit, offset: $offset}
date: {since: $from, till: $till}
transactionSender: {is: $address}
) {
block
transaction {
index
type
}
timestamp {
time(format: "%Y-%m-%d %H:%M:%S")
}
fromAccount {
address
annotation
}
destinationAccount {
address
annotation
}
nftokenCurrency {
name
symbol
}
currency {
name
symbol
}
nftokenAmount
nftoken_amount_usd: nftokenAmount(in: USD)
amount
amount_usd: amount(in: USD)
operation
}
}
}
{
"limit": 10,
"offset": 0,
"address": "rBEARbo4Prn33894evmvYcAf9yAQjp4VJF",
"network": "ripple"
}