Get NFT transfers
Query NFT transfers that match the specified filters.
API key header of the form X-API-Key: <token>, where <token> is the API key. Requests without a key are limited to 1 RPS. Refer to the authentication guide for details.
In: header
Query Parameters
Address of the NFT owner in any form. Maximum: 1000 addresses.
Address of the NFT item in any form. Maximum: 1000 addresses.
Collection address in any form.
Direction of the transfer.
Value in
- "in"
- "out"
Query transactions with a generation timestamp at or after the specified timestamp.
int320 <= valueQuery transactions with a generation timestamp at or before the specified timestamp.
int320 <= valueQuery transactions where lt is at or above the specified value.
int640 <= valueQuery transactions where lt is at or below the specified value.
int640 <= valueLimit the number of rows to return. Use with offset to batch requests.
int321 <= value <= 100010Skip the first N rows. Use with limit to batch requests.
int320 <= value0Sort transactions by lt.
"desc"Value in
- "asc"
- "desc"
Response Body
application/json
application/json
curl -X GET "https://example.com/api/v3/nft/transfers"{ "address_book": { "property1": { "domain": "string", "interfaces": [ "string" ], "user_friendly": "string" }, "property2": { "domain": "string", "interfaces": [ "string" ], "user_friendly": "string" } }, "metadata": { "property1": { "is_indexed": true, "token_info": [ { "description": "string", "extra": {}, "image": "string", "is_nsfw": true, "is_scam": true, "name": "string", "nft_index": "string", "symbol": "string", "type": "string", "valid": true } ] }, "property2": { "is_indexed": true, "token_info": [ { "description": "string", "extra": {}, "image": "string", "is_nsfw": true, "is_scam": true, "name": "string", "nft_index": "string", "symbol": "string", "type": "string", "valid": true } ] } }, "nft_transfers": [ { "custom_payload": "string", "decoded_custom_payload": {}, "decoded_forward_payload": {}, "forward_amount": "string", "forward_payload": "string", "new_owner": "string", "nft_address": "string", "nft_collection": "string", "old_owner": "string", "query_id": "string", "response_destination": "string", "trace_id": "string", "transaction_aborted": true, "transaction_hash": "string", "transaction_lt": "0", "transaction_now": 0 } ]}