Skip to main content

Balance

Retrieve the current balance of your account.

Endpoint

GET /users/balance/

Request

GET https://detect.expert/api/v1/users/balance/
X-Api-Key: YOUR_API_KEY

Response

200 OK (response body not defined in the schema)

Example

import requests

API_KEY = "YOUR_API_KEY"
url = "https://detect.expert/api/v1/users/balance/"

headers = {"X-Api-Key": API_KEY}
response = requests.get(url, headers=headers)
print(response.status_code)