GET
/
1
/
wallet
/
nfts
Get wallet nfts
curl --request GET \
  --url https://explorer-api.mobula.io/api/1/wallet/nfts
{
  "data": [
    {
      "token_address": "<string>",
      "token_id": "<string>",
      "token_uri": "<string>",
      "amount": "<string>",
      "owner_of": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "blockchain": "<string>",
      "chain_id": "<string>"
    }
  ],
  "pagination": {
    "total": 123,
    "page": 123,
    "offset": 123,
    "limit": 123
  }
}

Query Details

ParameterRequiredDescription
walletYesWallet address whose NFTs will be retrieved.
blockchainsCond.Comma-separated list of blockchains to query (e.g., ethereum,polygon). Defaults to all supported chains.
pageCond.Page number for paginated results.
offsetCond.Number of records to skip before returning results.
limitCond.Maximum number of NFTs per response.
paginationCond.Set to "true" to include pagination metadata in the response.
Notes:
  • Either page or offset can be used for pagination.
  • If blockchains is not provided, results include all supported chains.
  • pagination param by default set it to `false’.

Usage Examples

  • Query NFTs for a wallet on Ethereum
curl -X GET "https://api.mobula.io/api/1/wallet/nfts?wallet=0x3ded2644d8b82bc58f8c0be91bc10962cba90564&blockchains=ethereum"
  • Query NFTs with pagination enabled across all supported chains:
curl -X GET "https://explorer-api.mobula.io/api/1/wallet/nfts?page=1&offset=0&limit=1&pagination=true&wallet=0x3ded2644d8b82bc58f8c0be91bc10962cba90564"
  • Query NFTs for a wallet on Base and Ethereum
curl -X GET "https://explorer-api.mobula.io/api/1/wallet/nfts?page=1&offset=0&limit=100&pagination=false&wallet=0x3ded2644d8b82bc58f8c0be91bc10962cba90564&blockchains=evm:8453,evm:1"

Query Parameters

wallet
string
required
Minimum length: 1
blockchains
string
page
string
default:1
offset
string
default:0
limit
string
default:100
pagination
string
default:false

Response

200 - application/json

Wallet NFTs response

The response is of type object.