fb-pixel

API Token

Create a new token

Query credit balance with API

Return the credit-related information about the account.

POST https://backend.kaze.ai/api/ext/v1/get_quota

Header parameters:

  • Authorization: Bearer <>
  • Content-Type: application/json

Request Body:

Using Image URL

  • image_url: https://example.com/image.png
Example request:
curl --location --request POST 'https://backend.kaze.ai/api/ext/v1/get_quota' \
  --header 'Authorization: Bearer ' \
  --header 'Content-Type: application/json' \
  --data-raw '{}'

Response:

  • limit: Total quota
  • usage: Used quota
  • remaining: Remaining quota
Example request:
{
  "code": 0,
   "message": "Success", 
  "data": {
     "limit": 500, 
     "usage": 0, 
     "remaining": 500
  }
}

Status Codes

CODEDESCRIPTION
0Success
1000Parameter Error
1001Invalid HTTP Method
1002Authentication error
1003Insufficient Credits to Perform the Action
11xxServer Internal Error