# Get Balance Using this endpoint you can fetch the Payout Wallet address **balance** for your API Key and the `ticker` provided. **Method:** `GET` **Path:** ``` https://api.blockbee.io/{ticker}/payout/balance/ ``` --- ## Parameters ### Path Parameters - **`ticker`** (`string`) (required): The `ticker` parameter in this API request refers to the unique identifier of the cryptocurrency to which you are making the request. It is included in the URL of the request and helps to specify the exact cryptocurrency that you want to retrieve data for. The ticker is typically a short code that uniquely identifies the cryptocurrency, or the token and it's network/blockchain. For example, `btc` is the ticker for Bitcoin, and `trc20/usdt` is the ticker for USDT over TRC-20. Having this in mind, a request for USDT over TRC-20 will look like this: `https://api.blockbee.io/trc20/usdt/create/`. **Notes:** * You can find all our tickers in our [cryptocurrencies](https://blockbee.io/cryptocurrencies) page. * Our Payouts system does not support `doge`. --- ### Query Parameters - **`apikey`** (`string`) (required): API Key provided by BlockBee's [Dashboard](https://dash.blockbee.io/). Unsure how to get yours? [Check this tutorial](https://support.blockbee.io/support/solutions/articles/204000013926-how-to-generate-a-new-api-key). **Note:** The API key can also be sent as a header named `apikey`. --- ## Returns Returns the balance of the Payout Wallet for the provided `ticker`. - **`status`** (`string`): Status of the request. Should be success if the request didn't fail. - **`balance`** (`number`): Balance of your Payout Wallet address for the selected ticker. ## Example Response ```json { "status": "success", "balance": "0.12345678" } ```