---
title: "Retrieve balance"
description: "Return the current pay-as-you-go balance."
---

> Documentation Index
> Fetch the complete documentation index at: https://docs.uncaptcha.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve balance

<div class="endpoint-line">
  <span class="method method-get">GET</span>
  <code>https://api.uncaptcha.io/v1/balance/get</code>
</div>

## Request

```bash
curl --request GET \
  --url https://api.uncaptcha.io/v1/balance/get \
  --header "X-Api-Key: $UNCAPTCHA_API_KEY"
```

## Response

```json
{
  "success": true,
  "data": {
"balance": 5
  }
}
```

`data.balance` is a JSON number containing the account's current pay-as-you-go
balance.

> **Note**
>
> Package quota and unlimited-plan concurrency are separate from the account
> balance returned by this endpoint.

Source: https://docs.uncaptcha.io/api-reference/get-balance/index.mdx
