Skip to main content

Error Format

All errors return this format:
{
  "err": "Error message here",
  "response": null
}

HTTP Status Codes

CodeDescription
200Success
400Bad Request - Invalid parameters
401Unauthorized - Invalid API key
403Forbidden - Insufficient permissions
404Not Found - Resource doesn’t exist
429Too Many Requests - Rate limit exceeded
500Server Error - Something went wrong

Common Errors

Invalid API Key

{
  "err": "Invalid API key",
  "response": null
}
Solution: Check your API key in Dashboard → Settings

Bot Not Found

{
  "err": "Bot not found",
  "response": null
}
Solution: Verify bot ID is correct

Rate Limit Exceeded

{
  "err": "Rate limit exceeded",
  "response": null
}
Solution: Wait or upgrade your plan

Next Steps