Loading
Loading
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.
$ 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)