v2

OpenAPI 3.1.02026-07-3139137119.0 KB
wallet

Wallet Portfolio

Scan wallets with per-wallet success or error results.

post/wallet/portfolio

Headers

X-API-KEYstring required

API key for authentication

Request body

force_refreshboolean

Example request

{
  "filter": {
    "min_balance_usd": 1
  },
  "force_refresh": false,
  "wallets": [
    {
      "address": "0x1234...abcd",
      "chain_ids": [
        1,
        8453,
        137
      ],
      "chain_type": "EVM"
    }
  ]
}

Response

Portfolio completed

Example response

{
  "errors": [
    {
      "wallet": {
        "address": "0x1234...abcd",
        "chain_ids": [
          1,
          8453,
          137
        ],
        "chain_type": "EVM"
      }
    }
  ],
  "portfolio": [
    {
      "chain_type": "EVM",
      "currencies": [
        {
          "balance": {
            "raw": "100000000",
            "ui": "100.0",
            "value_usd": 100
          },
          "currency": {
            "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
            "chain_id": 1,
            "decimals": 6,
            "id": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48-1",
            "name": "USD Coin",
            "price_usd": 1,
            "symbol": "USDC"
          }
        }
      ],
      "wallet": {
        "address": "0x1234...abcd",
        "chain_ids": [
          1,
          8453,
          137
        ],
        "chain_type": "EVM"
      }
    }
  ]
}