Introduction
Octopus - Market API
- Docs
- Warehouse
- GETGet Market Data
- GETGet Market Data (batch)
- GETGet Market Pair
- GETGet All Pairs
- GETGet Pair Trades
- GETGet Historical Market Data
- GETGet Historical Market Data (batch)
- GETGet Historical Pair Data (OHLCV)
- GETQuery Asset Data
- GETQuery Token Data
- GETGet Token Holders
- GETGet Blockchain Pairs
- GETGet Pulse (new, bonding, bonded)
[BETA] Wallet Explorer API
Metacore
[BETA] Wallet Explorer API
Get NFTs Holdings
GET
/
1
/
wallet
/
nfts
curl --request GET \
--url https://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 Parameters
Minimum length:
1
Response
200 - application/json
Wallet NFTs response
The response is of type object
.
curl --request GET \
--url https://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
}
}
Assistant
Responses are generated using AI and may contain mistakes.