GET
/accountFreeAccount
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
| Field | Type | Description |
|---|---|---|
string | Your account email address. | |
| credits | number | Current credit balance. |
| total_images | number | Total number of images generated on this account. |
| plan | string | Current 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.