GET/accountFree

Account

Get your account information including email, credit balance, usage stats, and current plan.

Request Parameters

No request body required.

Example Request

cURL
curl https://api.journeyapi.com/api/v1/account \
  -H "Authorization: YOUR_API_KEY"

Response

200 OK
{
  "email": "[email protected]",
  "credits": 12000,
  "total_images": 695,
  "plan": "starter"
}

Response Fields

FieldTypeDescription
emailstringYour account email address.
creditsnumberCurrent credit balance.
total_imagesnumberTotal number of images generated on this account.
planstringCurrent subscription plan (e.g., "starter", "growth", "enterprise").

Tips

  • 1Use this to check your credit balance before starting large batch jobs.
  • 2This is the only GET endpoint — all others are POST.

Quirks & Gotchas

No request body. Just send your API key in the Authorization header.