Skip to main content
GET
/
billing
/
account
Get Account Billing
const options = {method: 'GET', headers: {'X-Browser-Use-API-Key': '<api-key>'}};

fetch('https://api.browser-use.com/api/v2/billing/account', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "totalCreditsBalanceUsd": 123,
  "monthlyCreditsBalanceUsd": 123,
  "additionalCreditsBalanceUsd": 123,
  "rateLimit": 123,
  "planInfo": {
    "planName": "<string>",
    "subscriptionStatus": "<string>",
    "subscriptionId": "<string>",
    "subscriptionCurrentPeriodEnd": "<string>",
    "subscriptionCanceledAt": "<string>"
  },
  "projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>"
}

Authorizations

X-Browser-Use-API-Key
string
header
required

Response

Successful Response

View model for account information.

totalCreditsBalanceUsd
number
required

The total credits balance in USD

monthlyCreditsBalanceUsd
number
required

Monthly subscription credits balance in USD

additionalCreditsBalanceUsd
number
required

Additional top-up credits balance in USD

rateLimit
integer
required

The rate limit for the account

planInfo
Plan Info · object
required

The plan information

projectId
string<uuid>
required

The ID of the project

name
string | null

The name of the user