GET
/
1
/
wallet
/
token-transfers
curl --request GET \
  --url https://api.mobula.io/api/1/wallet/token-transfers
{
  "raw": [
    {
      "id": "<string>",
      "timestamp": 123,
      "from": "<string>",
      "to": "<string>",
      "contract": "<string>",
      "hash": "<string>",
      "amount_usd": 123,
      "amount": 123,
      "block_number": 123,
      "type": "<string>",
      "blockchain": "<string>",
      "tx_cost": 123,
      "transaction": {
        "hash": "<string>",
        "chainId": "<string>",
        "fees": "<string>",
        "feesUSD": 123,
        "date": "<string>"
      },
      "asset": {
        "id": 123,
        "name": "<string>",
        "symbol": "<string>",
        "totalSupply": 123,
        "circulatingSupply": 123,
        "price": 123,
        "liquidity": 123,
        "priceChange24hPercent": 123,
        "marketCapUSD": 123,
        "logo": "<string>",
        "nativeChainId": "<string>",
        "contract": "<string>"
      }
    }
  ],
  "unified": [
    {
      "chain_id": "<string>",
      "hash": "",
      "method": "<string>",
      "from": "",
      "to": "",
      "native_amount": "0",
      "name": "Unknown",
      "logo": "<string>",
      "amount": "0",
      "token": "",
      "symbol": "<string>",
      "timestamp": "",
      "block_number": 123,
      "txn_fees": "0",
      "status": true
    }
  ],
  "wallets": [
    "<string>"
  ],
  "pagination": {
    "total": 123,
    "page": 123,
    "offset": 123,
    "limit": 123
  }
}

Token transfers endpoint allows you to fetch raw and unified token transfer data (e.g., ERC-20, BEP-20) for one or multiple specified wallet addresses across all EVM and non-EVM blockchains supported by Mobula, covering all token transactions 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 token transfers response
raw
object[]
required
unified
object[]
required
wallets
string[]
required
pagination
object | null
required