mirrored listing x402 eip155:8453

TraceFast live Ethereum data: balanceOf(address) for one token at the end of a block, read

TraceFast live Ethereum data: balanceOf(address) for one token at the end of a block, read from contract storage. A token outside the covered set is refused (422), never a fake zero. Path address and token: 0x-prefixed, 40 hex. Query block: integer, state at the end of this block, absent = current. Docs: https://docs.tracefast.xyz/api/address-token-balance.md

Do you run mpp.tracefast.xyz? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-04
updated

Provider

mpp.tracefast.xyz · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x2A65491E93Ad0d484b74405401A38e2E0E5EDd7e",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "20000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "pathParams": {
          "address": "0xf977814e90da44bfa03b6295a0616a897441acec",
          "token": "0xdac17f958d2ee523a2206206994597c13d831ec7"
        },
        "queryParams": {},
        "type": "http"
      },
      "output": {
        "example": {
          "data": {
            "address": "0xf977814e90da44bfa03b6295a0616a897441acec",
            "balance": "17000000000000198",
            "balanceBasis": "contract_storage",
            "decimals": 6,
            "symbol": "USDT",
            "token": "0xdac17f958d2ee523a2206206994597c13d831ec7",
            "window": {
              "asOfBlock": 25901228,
              "kind": "current"
            }
          }
        },
        "type": "json"
      }
    },
    "routeTemplate": "/api/v1/chains/1/entities/:address/tokens/:token/balance",
    "schema": {
      "properties": {
        "input": {
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "pathParams": {
              "type": "object"
            }
          },
          "required": [
            "method"
          ]
        }
      }
    }
  }
}

Use it

curl

curl "https://mpp.tracefast.xyz/api/v1/chains/1/entities/:address/tokens/:token/balance"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://mpp.tracefast.xyz/api/v1/chains/1/entities/:address/tokens/:token/balance");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://mpp.tracefast.xyz/api/v1/chains/1/entities/:address/tokens/:token/balance")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/13205.json, and this resource appears in /discovery/resources and /discovery/search.