GET
/
1
/
wallet
/
nft-transfers
curl --request GET \
  --url https://api.mobula.io/api/1/wallet/nft-transfers
{
  "raw": [
    {
      "combined_id": "<string>",
      "combined_date": "<string>",
      "contract_address": "<string>",
      "from_address": "<string>",
      "to_address": "<string>",
      "chain_id": "<string>",
      "token_id": "<string>",
      "fees": "<string>",
      "fees_usd": 123,
      "block_height": 123,
      "transaction_hash": "<string>",
      "raw_type": "sell"
    }
  ],
  "unified": [
    {
      "chain_id": "<string>",
      "hash": "<string>",
      "method": "<string>",
      "from": "<string>",
      "to": "<string>",
      "amount": "<string>",
      "token": "<string>",
      "symbol": "<string>",
      "tokenId": "<string>",
      "timestamp": "<string>",
      "block_number": 123,
      "txn_fees": "<string>",
      "status": true
    }
  ],
  "wallets": [
    "<string>"
  ],
  "pagination": {
    "total": 123,
    "page": 123,
    "offset": 123,
    "limit": 123
  }
}

NFT transfers endpoint allows you to access raw and unified NFT transfer data (e.g., ERC-721, ERC-1155) for one or multiple specified wallet addresses across all EVM blockchains supported by Mobula, with pagination support.

Query Parameters

limit
string
offset
string
page
string
order
string
cache
string
stale
string
wallet
string
wallets
string
from
string
to
string
blockchains
string
pagination
string

Response

200 - application/json
Wallet nft transfers response
raw
object[]
required
unified
object[]
required
wallets
string[]
required
pagination
object | null
required