For the complete documentation index, see llms.txt. This page is also available as Markdown.

Account Balance

Retrieve the authenticated user’s email and credit balance.

This endpoint returns the authenticated user’s email and available credit balance.

Authentication is required via the x-api-key header. Use this endpoint to check remaining credits before submitting jobs.

Get Account Balance

get

Retrieve the authenticated user's account details including available balance.

Authorizations
x-api-keystringRequired
Responses
200

User account details retrieved successfully.

application/json
emailstringOptional

Email

balancenumberOptional

Available balance

get/account/balance
GET /v1/account/balance HTTP/1.1
Host: api.deepixels.co
x-api-key: YOUR_API_KEY
Accept: */*
{
  "email": "[email protected]",
  "balance": 42
}

Last updated