journeyapi.devDocs
API reference

Retrieve the account

Read the current balance and auto-reload settings.

GET/v1/account

Returns your balance in US dollars alongside the account settings. Pair it with the balance.low webhook rather than polling on a schedule.

Request
curl https://api.journeyapi.dev/v1/account -H "Authorization: Bearer $JOURNEY_API_KEY"
Response · 200 OK
{
  "object": "account",
  "id": "acct_01HQ8T4M2K9PWR",
  "balance_usd": 412.50,
  "currency": "usd",
  "low_balance_threshold_usd": 50.00,
  "auto_reload": { "enabled": true, "trigger_usd": 50.00, "amount_usd": 250.00 },
  "limits": { "requests_per_minute": 60, "concurrent_jobs": 8 },
  "updated_at": "2026-09-18T09:21:40Z"
}