Skip to main content
All of our API responses are structured in the same way, providing consistency across endpoints. The following fields are included:
code
number
An HTTP status code indicating the result of the request.
message
string
A brief, human-readable message indicating the result of the request.
data
object?
The requested information. This field is not always provided depending on the endpoint and request.
Example Response
{
  "code": 200,
  "message": "Bot statistics were fetched successfully.",
  "data": {
    "links": 37975,
    "users": 777906,
    "guilds": 10403,
    "version": "v1.6.0 Stable"
  }
}
Some more error responses can be found below as a reference.
400 Bad Request
{
  "code": 400,
  "message": "An invalid ID was provided."
}