Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.duckybot.xyz/llms.txt

Use this file to discover all available pages before exploring further.

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": {
    "guilds": 10597,
    "users": 796787,
    "links": 38577
  }
}
Some more error responses can be found below as a reference.
400 Bad Request
{
  "code": 400,
  "message": "An invalid ID was provided."
}