GET
/
v1
/
usage
/
Get usage statistics
curl --request GET \
  --url https://api.debounce.io/v1/usage/
{
  "debounce": {
    "api": "YOUR API KEY",
    "start": "24-01-01",
    "end": "24-12-31",
    "calls": "100"
  },
  "success": "1"
}
When specifying dates for our service:
  • Use the YY-MM-DD format (two digits each for year, month, and day).
  • Do not specify a start date earlier than 20-08-14.
  • Do not specify an end date later than the current date.
By following these guidelines, your requests will be valid and properly processed by our system.

Authorizations

api
string
query
required

API key for authentication

Query Parameters

api
string
required

Your Debounce API key

start
string
required

Start date. Must be after 20-08-14 (YY-MM-DD)

Example:

"24-01-01"

end
string
required

End date. Equal or less than today's date (YY-MM-DD)

Example:

"24-12-31"

Response

200 - application/json

Usage history retrieved successfully

success
enum<string>
required

Whether the request was successful

Available options:
0,
1
debounce
object