---
title: "Token - Holder (Batch)"
method: POST
path: "/token/v1/holder/batch"
tags: ["Holder"]
---

# Token - Holder (Batch)

`POST /token/v1/holder/batch`

Retrieve the token balance held by a list of wallet owners.

## Query parameters

- `ui_amount_mode` 'raw' | 'scaled'

## Headers

- `x-chain` 'solana'

## Request body

- TokenHolderBatchBody — Request body for retrieving one token balance across multiple wallet owners.
  - `wallets` string[], required — Wallet owner addresses to check. Supports 1 to 500 wallets per request.
  - `token_address` string, required — Token mint address to check in each wallet.

## Response `200`

JSON object containing token balances held by a list of wallet owners

- TokenHolderBatchResponse — Response containing token balances for a list of wallet owners.
  - `success` boolean, required — Indicates whether the request was successful.
  - `data` object, required — Token balances for the requested wallet owners.
    - `items` object[] — One balance row per wallet that holds the requested token.
      - `balance` string — Raw token balance held by the wallet before applying token decimals.
      - `decimals` integer — Number of decimal places used by the token mint.
      - `mint` string — Token mint address.
      - `owner` string — Wallet address from the request.
      - `amount` number — Token balance after applying decimals or Solana Token-2022 scaled UI amount when requested and supported.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized. API key is missing or invalid
- `403` — Forbidden. Request is blacklisted or not whitelisted
- `429` — Too Many Requests. Rate limit reached
- `500` — Internal Server Error

---

[API](https://skmtc.net/birdeye/apis/birdeye-data-api.md) · [All operations](https://skmtc.net/birdeye/apis/birdeye-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/birdeye/birdeye-data-api/revisions/fcaba926a089/schema)
