Credits Usage API
The Credits Usage API allows you to obtain real-time information on used credits, applicable to both one-off and subscription credits. This endpoint is restricted to organization admins for an organization and cannot be accessed by organization members.
API Endpoint
Explore the complete API reference with detailed request parameters, response fields, error codes, and code examples visit API Reference.
LANGUAGE
$ pip install requestsimport requests
url = "https://api.apifreaks.com/v1.0/credits/usage/info"
payload = {}
headers = {
'X-apiKey': 'API-KEY'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)