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

# Get account

> Balance, tier, rate limits, and Signal spend — free to call.

**Cost: Free** — poll it from dashboards and billing alerts as often as you like.

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.up2data.ai/v1/account \
    -H "X-API-Key: $UP2DATA_API_KEY"
  ```

  ```python Python theme={null}
  resp = requests.get(
      "https://api.up2data.ai/v1/account",
      headers={"X-API-Key": UP2DATA_API_KEY},
  )
  balance = resp.json()["data"]["credits_remaining"]
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "account_id": "acc_19dm3nx8",
      "volume_band": "1M-10M",
      "credits_remaining": 98413,
      "credits_used_this_month": 41587,
      "price_per_1k_credits_usd": 2.00,
      "rate_limit": { "requests_per_minute": 300, "concurrent_batch_jobs": 5 },
      "signals": {
        "active": 112,
        "paused": 3,
        "estimated_monthly_credits": 3520
      }
    },
    "meta": { "creditsUsed": 0, "billed": false, "requestId": "req_ac10mmd2" }
  }
  ```
</ResponseExample>

<Tip>
  `signals.estimated_monthly_credits` is your standing monitoring burn. Alert when `credits_remaining` drops below \~2× that number and Signals will never auto-pause on you.
</Tip>
