# Remaining balance

Source: https://docs.scrappey.com/docs/remaining-balance

> Check how many requests remain in your Scrappey account balance with a single GET request.

## Request

```bash
GET https://publisher.scrappey.com/api/v1/balance?key=YOUR_API_KEY
```

Replace `YOUR_API_KEY` with your actual API key, which can be found in your [Scrappey Dashboard](https://publisher.scrappey.com).

## Response

```json
{
  "balance": 1547
}
```

The value represents the number of **requests** you have left in your current balance. Each successful [`request.get`](/docs/request-get) or other command draws it down; see [Concurrency limits](/docs/concurrency-limits) for how many you can run in parallel.
