CaptAPI Account · Guide

How to get CaptAPI Account credit balance

TL;DR
To get CaptAPI Account credit balance, sign up for a free Captapi key, then send one GET request to /v1/account/balance with your input. You get clean JSON back in seconds for 0 credits per call — no OAuth, scraping or platform SDKs. Plan, subscription vs top-up credits, monthly quota, and renewsAt — 0 credits.

How to get CaptAPI Account credit balance (step by step)

  1. 1

    Get a free API key

    Create a free Captapi account (100 credits, no card) and generate an API key from the dashboard.

  2. 2

    Call the Credit Balance API

    Send an authenticated GET request to /v1/account/balance with your input. No OAuth, no scraping setup.

  3. 3

    Read the JSON response

    Parse the clean JSON response. Pass cache=true for a free 24h cache hit; default is always fresh.

Code example

curl "https://api.captapi.com/v1/account/balance" \
  -H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."

What the response looks like

{
  "success": true,
  "data": {
    "plan": "free",
    "monthlyQuota": 100,
    "subscriptionCredits": 0,
    "topupCredits": 9599,
    "totalCredits": 9599,
    "subscriptionRenewsAt": null,
    "usedThisMonth": 498,
    "quotaResetsAt": null,
    "keyName": "production",
    "rateLimitPerMinute": 40,
    "rateLimitRemaining": null,
    "monthly_quota": 100,
    "subscription_credits": 0,
    "topup_credits": 9599,
    "total_credits": 9599,
    "subscription_renews_at": null
  }
}

Billing metadata (credits charged, cache hit/miss) is returned in the X-Captapi-Credits and X-Captapi-Cache response headers.

Frequently asked questions

What does the Credit Balance API do?

The Credit Balance API returns credit balance for your Captapi API key via one GET request to /v1/account/balance. It returns clean JSON and does not charge credits.

How many credits does the Credit Balance API cost?

Account endpoints are free — they do not consume credits.

Do I need a CaptAPI Account API key or OAuth?

You only need your Captapi API key (Authorization: Bearer). No third-party OAuth is required.

Is the Credit Balance API suitable for production use?

Yes. It is a stable REST endpoint with predictable JSON. Account endpoints are always live (never cached) and do not charge credits.

Ready to get CaptAPI Account credit balance?

Start free with 100 credits — no credit card required.

Get your free API key