Skip to main content
GET
/
v1
/
credits
/
status
Check checkout status
curl --request GET \
  --url https://api.vidjutsu.ai/v1/credits/status \
  --header 'Authorization: Bearer <token>'
{
  "status": "pending",
  "apiKey": "<string>",
  "clientId": "<string>",
  "balance": 123,
  "isNew": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

session
string
required

Response

200 - application/json

The request has succeeded.

status
enum<string>
required
Available options:
pending,
completed
apiKey
string
clientId
string
balance
integer<int32>
isNew
boolean