Get Token Balances + Performance

This endpoint returns Current Token Balance, Cost and Performance data for one or more registered wallets, including Price, Balance, Value, Cost Basis, Realized PnL and Unrealized PnL. Use this endpoint for real-time pricing and Live or Historical P&L reporting for tokens.

  • Pricing - Real-time token Prices are sourced from 4 reputable sources, ensuring completeness in pricing coverage and redundancy.
  • Accounting Method - Cost Basis and Realized P&L accounting methodology (FIFO, LIFO, Weighted Average Cost) can be selected using the cost_method parameter.
    • Cost Basis is inclusive of gas fees paid in the transaction.
    • The selected accounting method is used to calculate cost basis for Realized P&L, which matches the tokens realized to a specific cost based on the relevant accounting method.
    • Unrealized P&L is calculated based on potential gain/loss versus the average cost of the token inventory held.
  • Realization Events - Realized P&L represents potential tax realization events as defined in the U.S. Realization events are defined in the Glossary. For Realized P&L, data is available for multiple time periods (D, W, M, 3M, YTD, 1YR, Max). Desired period is selected using the period parameter.
  • Currency - Accounting data can be calculated and shown in the currency of your choice using the currency parameter. Choose from US Dollar, ETH, MATIC, AVAX or xDAI.

Successful Query Example

Single Wallet

curl --request GET \
     --url 'https://api.openpool.co/wallet/balance/?wallet=0x59a5493513ba2378ed57ae5ecfb8a027e9d80365&period=M' \
     --header 'X-API-KEY: <insert_api_key>' \
     --header 'accept: application/json'

Multiple Wallets

curl --request GET \
     --url 'https://api.openpool.co/wallet/balance/?wallet=0x59a5493513ba2378ed57ae5ecfb8a027e9d80365%2C0x3b3525f60eeea4a1ef554df5425912c2a532875d&period=M' \
     --header 'X-API-KEY: <insert_api_key>' \
     --header 'accept: application/json'

Successful Response Example


"results": [
    {
      "id": "bal_2LWzUt7o3q8LFKegvtG7iD",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_FirimyKxL56VwoUhUFkBKP",
        "asset": {
          "id": "asset_dAH3ZHUcmQs2rrb3tjBj3V",
          "name": "Ethereum",
          "symbol": "ETH",
          "slug": "ethereum"
        },
        "address": "0x0000000000000000000000000000000000000000",
        "decimals": 18,
        "blockchain": "blockchain_CXTQHpufgGtMwu8Lktv7Aw"
      },
      "balance": 0.5274,
      "price": 1648.7968405792355,
      "value": 869.5754537214888,
      "average_cost": 1256.68,
      "unrealized_pnl": 206.8024217214888,
      "total_realized_pnl": 1181.4189975,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_VLc4ohgAC4Psfcj5sQMNcZ",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_MVYYe6CcmJQUgQHNP2ttDw",
        "asset": {
          "id": "asset_TiAMikThMrbPZDLqWPRXG2",
          "name": "Polygon",
          "symbol": "MATIC",
          "slug": "polygon"
        },
        "address": "0x0000000000000000000000000000000000000000",
        "decimals": null,
        "blockchain": "blockchain_DUe637q5i7pGcV4rnmio7H"
      },
      "balance": 824.45,
      "price": 0.5509617906624676,
      "value": 454.24044831167146,
      "average_cost": 0.81,
      "unrealized_pnl": -213.56405168832862,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_QF45SK6gLv8kmcPVUeh33V",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_Ew9hJsRzBF7aJqjCbrAsnh",
        "asset": {
          "id": "asset_dAH3ZHUcmQs2rrb3tjBj3V",
          "name": "Ethereum",
          "symbol": "ETH",
          "slug": "ethereum"
        },
        "address": "0x0000000000000000000000000000000000000000",
        "decimals": null,
        "blockchain": "blockchain_3pCy2g5sCSNk6MWGgvY2NP"
      },
      "balance": 0.9965,
      "price": 1648.7968405792355,
      "value": 1643.0260516372084,
      "average_cost": 1220.7,
      "unrealized_pnl": 426.5985016372082,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_mc5tog5b3qkPR6FnTsmtDj",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 1049,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_2F4qobaXmd5GP7NcLWHqE3",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_ZxH4V6BPJCep8knty5WGix",
        "asset": {
          "id": "asset_kz9MK6pCx4akNMMZNQNHkd",
          "name": "XEN Crypto",
          "symbol": "XEN",
          "slug": "xen-crypto"
        },
        "address": "0x06450dee7fd2fb8e39061434babcfc05599a6fb8",
        "decimals": null,
        "blockchain": "blockchain_CXTQHpufgGtMwu8Lktv7Aw"
      },
      "balance": 1000000,
      "price": 6.562794844205936e-7,
      "value": 0.6562794844205936,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_XQwLNuSyXkRNWmDfNPdYLF",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 1000000000,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_68dmBovGhSKgLgCqE8yZVU",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 290,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_DhzCxEqrzpjkYSVQjV8QH4",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 7077,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_5ukfW6kWavKHTy3VkZLoXZ",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 959,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_UrSfBZGQ3k5U2q3HjzHY33",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_VwNoYp96g9cfv8GsYk72T9",
        "asset": {
          "id": "asset_QK8qcUU4cpAYH4SXPuW4qe",
          "name": "Unisocks",
          "symbol": "SOCKS",
          "slug": "unisocks"
        },
        "address": "0x23b608675a2b2fb1890d3abbd85c5775c51691d5",
        "decimals": 18,
        "blockchain": "blockchain_CXTQHpufgGtMwu8Lktv7Aw"
      },
      "balance": 1.1,
      "price": 30442.426763186184,
      "value": 33486.6694395048,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_b3tVpNzoRP3HKznPBAs2HM",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_hNRQ6CsmZo2RjBuR4zLYUE",
        "asset": {
          "id": "asset_djG9vxLUBJRXdabrFTYVXQ",
          "name": "USD Coin",
          "symbol": "USDC",
          "slug": "usd-coin"
        },
        "address": "0x2791bca1f2de4661ed88a30c99a7a9449aa84174",
        "decimals": null,
        "blockchain": "blockchain_DUe637q5i7pGcV4rnmio7H"
      },
      "balance": 0.01,
      "price": 1.000004566204189,
      "value": 0.010000045662041891,
      "average_cost": 1,
      "unrealized_pnl": 4.566204188982681e-8,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_FKkmUQcsT4JiEt8zVr2cn3",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 1024,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_enZKCRL8o8aVL33W7VE7mG",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_gq5K3GYeUHVZa3B62rxnHa",
        "asset": {
          "id": "asset_NScTyXsur93DTWdRfNQHPg",
          "name": "Radiant Capital",
          "symbol": "RDNT",
          "slug": "radiant-capital"
        },
        "address": "0x3082cc23568ea640225c2467653db90e9250aaa0",
        "decimals": null,
        "blockchain": "blockchain_3pCy2g5sCSNk6MWGgvY2NP"
      },
      "balance": 5,
      "price": 0.23096522755737814,
      "value": 1.1548261377868907,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_2LvpdPvDHPzmBdi3VJELrf",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_at5z938cJPe4fhMZdYAe3j",
        "asset": {
          "id": "asset_Ny54CMgZpMdKyJumCPKjdC",
          "name": "ELMOERC",
          "symbol": "ELMO",
          "slug": "elmoerc"
        },
        "address": "0x335f4e66b9b61cee5ceade4e727fcec20156b2f0",
        "decimals": null,
        "blockchain": "blockchain_CXTQHpufgGtMwu8Lktv7Aw"
      },
      "balance": 1000,
      "price": 0.006132620957402622,
      "value": 6.132620957402621,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_YyihFPwFsuDZMGSQKAF8Mo",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 81.4933,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_SEmXYHTkifrvnYPvtJPpxn",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 100,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_iMVGYbvXKMKHYFnfpACehw",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 412.96,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_37rZPTteYAUxfaJAFLAdAw",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_EN65U4SgaZJVovU6bVgTZr",
        "asset": {
          "id": "asset_MRhTJUx6WZ3Rk3JvGtom26",
          "name": "Optimism",
          "symbol": "OP",
          "slug": "optimism-ethereum"
        },
        "address": "0x4200000000000000000000000000000000000042",
        "decimals": null,
        "blockchain": "blockchain_Sr4xsurVjmkZMMbH2rpLQ4"
      },
      "balance": 3025.2841,
      "price": 1.3829741903520814,
      "value": 4183.889828782525,
      "average_cost": 0.95,
      "unrealized_pnl": 1309.869933782525,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_KvrvufTCnTNYnicsXMLHQX",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 1300,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_22vwQrcafHMKPZxGuzt6Pq",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 6000000,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_djFxzegGesomx5tvo4FAfL",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 258,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_NqC8Bf56hWPcHZvFzrVwMX",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 7000,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_i7qi2s4SZvNypV8Sx9jKDU",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 518,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_iTrHj3od6e22CRxRAp9Dmk",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_oLP9ducrkYyNtFC4Asm9o2",
        "asset": {
          "id": "asset_ae9t4qZAb7nTH335Zrsfjh",
          "name": "Dai",
          "symbol": "DAI",
          "slug": "multi-collateral-dai"
        },
        "address": "0x6b175474e89094c44da98b954eedeac495271d0f",
        "decimals": 18,
        "blockchain": "blockchain_CXTQHpufgGtMwu8Lktv7Aw"
      },
      "balance": 14695.1046,
      "price": 0.9997033000778598,
      "value": 14690.744563609338,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_miAkLryH658LZ7QbCsr3BH",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 956.9118,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_mvkp2n9YteGhmQWK9Ehs3U",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 1049,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_a6dVLRPTNMYZFNXLkNykSu",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 0.1,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_GksybYA6US7KNfRqmQxcYK",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 1000000000,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_dy4PHwQzMLxRFSBrgD7MC8",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 1000,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_6ZrrxzmzgtSQGUJBTrW7SY",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 77201,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_M5PMtDqzcnup7ydgmfWxJ5",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 620,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_XaY6fvpPsoYVmJrWwdEnHf",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_KnoeSaLJVtpor3NBh6DBFE",
        "asset": {
          "id": "asset_djG9vxLUBJRXdabrFTYVXQ",
          "name": "USD Coin",
          "symbol": "USDC",
          "slug": "usd-coin"
        },
        "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
        "decimals": 6,
        "blockchain": "blockchain_CXTQHpufgGtMwu8Lktv7Aw"
      },
      "balance": 25833.8285,
      "price": 1.000004566204189,
      "value": 25833.946462535914,
      "average_cost": 1,
      "unrealized_pnl": 0.11796253591416017,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_RNLJ3r4RHQZjG6iCtzGLKy",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 6500230,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_dmiKbLLru9r6dCFiWMG2rt",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_Ma2SwqZMhRNBGoBMznGQsr",
        "asset": {
          "id": "asset_7iYQhDYWhpgFgbJug5b6GN",
          "name": "Good Gensler",
          "symbol": "GENSLR",
          "slug": "good-gensler"
        },
        "address": "0xad1a5b8538a866ecd56ddd328b50ed57ced5d936",
        "decimals": null,
        "blockchain": "blockchain_CXTQHpufgGtMwu8Lktv7Aw"
      },
      "balance": 777,
      "price": 7.25459850770262e-10,
      "value": 5.636823040484936e-7,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_EsBC5J5dvHZnZmeL4ReQVd",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 122,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_NZopXYAzjNKpPpqGXKHMjY",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 1,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_jzaTFP5uZDGn76Fyn7VPAp",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 479.8,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_XPnYFxe7Pxc88i4XXN3UQ7",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_RSxWVx6WbeT2q5bCem2eMo",
        "asset": {
          "id": "asset_NpVwRJ7sMdyrKpoMAPk8fx",
          "name": "Ethereum Name Service",
          "symbol": "ENS",
          "slug": "ethereum-name-service"
        },
        "address": "0xc18360217d8f7ab5e7c516566761ea12ce7f9d72",
        "decimals": 18,
        "blockchain": "blockchain_CXTQHpufgGtMwu8Lktv7Aw"
      },
      "balance": 408.3953,
      "price": 7.822096797623003,
      "value": 3194.507568294286,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_GZkpo6KsdxBizYaxXFLfKW",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 30000,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_B8hdhV3gBroL8doSLKtruo",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_FaWfrYDkotcEHzsqKgfuqg",
        "asset": {
          "id": "asset_ae9t4qZAb7nTH335Zrsfjh",
          "name": "Dai",
          "symbol": "DAI",
          "slug": "multi-collateral-dai"
        },
        "address": "0xda10009cbd5d07dd0cecc66161fc93d7c9000da1",
        "decimals": null,
        "blockchain": "blockchain_3pCy2g5sCSNk6MWGgvY2NP"
      },
      "balance": 12.7416,
      "price": 0.9997033000778598,
      "value": 12.737819568272059,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_jCGcbfpV6L3D4c3pyRbZMG",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_YjpQrtjKTPKaN8axNa3Ga7",
        "asset": {
          "id": "asset_aoSnEb2H3WqYUCZAEPbKi3",
          "name": "Tether",
          "symbol": "USDT",
          "slug": "tether"
        },
        "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
        "decimals": 6,
        "blockchain": "blockchain_CXTQHpufgGtMwu8Lktv7Aw"
      },
      "balance": 370.6356,
      "price": 0.9996883568487142,
      "value": 370.5200939536373,
      "average_cost": 1,
      "unrealized_pnl": -0.11550604636272005,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_hnMREc3GZNZVz25gzsYGBx",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": -1475,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_L8rHWBz2nwopkJia9ThXnJ",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": {
        "id": "token_Sf7wSSVNV9uGmYc7m2Pp67",
        "asset": {
          "id": "asset_fwMiruEAtcFLqBNsjdsDe3",
          "name": "Gitcoin",
          "symbol": "GTC",
          "slug": "gitcoin"
        },
        "address": "0xde30da39c46104798bb5aa3fe8b9e0e1f348163f",
        "decimals": null,
        "blockchain": "blockchain_CXTQHpufgGtMwu8Lktv7Aw"
      },
      "balance": 2687.2833,
      "price": 0.8827522986456446,
      "value": 2372.2055101870533,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_XN6azZ8s9Jx2ZKA7F95EAV",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 227.3,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_bmhawBG5fi9sVXMwaUciP6",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 92500,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_ihpGVb9jCTU2Cn897uBbpj",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 777,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_9awGwz7FfzeDJjDv8Gbq8B",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 54.39,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_J3TAnF4kj5tzS38k5MGucP",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 21000000,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    },
    {
      "id": "bal_csxYfHDuQ8ht2jRkAQwyrr",
      "wallet": "0x50ec05ade8280758e2077fcbc08d878d4aef79c3",
      "token": null,
      "balance": 600000000,
      "price": null,
      "value": 0,
      "average_cost": 0,
      "unrealized_pnl": 0,
      "total_realized_pnl": 0,
      "cost_method": "FIFO",
      "currency": "USD"
    }
  ]
}
Language
Authorization
Click Try It! to start a request and see the response here!