GET
/
insights
/
v1
/
tokens
/
transfers
/
transaction
/
{transaction_hash}
Get token transfers by transaction
curl --request GET \
  --url https://data-api.b3.fun/insights/v1/tokens/transfers/transaction/{transaction_hash}
{
  "data": [
    {
      "block_number": "<string>",
      "block_hash": "<string>",
      "block_timestamp": "<string>",
      "transaction_hash": "<string>",
      "from_address": "<string>",
      "to_address": "<string>",
      "log_index": 123,
      "contract_address": "<string>",
      "transfer_type": "mint",
      "token_type": "erc20",
      "amount": "<string>",
      "chain_id": 123,
      "token_metadata": {
        "name": "<string>",
        "symbol": "<string>",
        "decimals": 123,
        "price_data": {
          "price_usd": 123,
          "usd_value": 123,
          "volume_24h_usd": 123,
          "market_cap_usd": 123,
          "circulating_supply": 123,
          "total_supply": 123,
          "percent_change_24h": 123,
          "price_timestamp": "<string>"
        }
      },
      "price_data": {
        "price_usd": 123,
        "usd_value": 123,
        "volume_24h_usd": 123,
        "market_cap_usd": 123,
        "circulating_supply": 123,
        "total_supply": 123,
        "percent_change_24h": 123,
        "price_timestamp": "<string>"
      }
    }
  ],
  "aggregations": "<any>",
  "meta": {
    "chain_id": 123,
    "address": "<string>",
    "signature": "<string>",
    "page": 123,
    "limit": 123,
    "total_items": 123,
    "total_pages": 123
  }
}

Path Parameters

transaction_hash
string
required

Transaction hash

Response

200
application/json

Success

The response is of type object.