Skip to main content

Base URL

https://polychadsbot.xyz/api/v1
All requests require a Bearer token. See Authentication.

Endpoints

MethodEndpointDescription
GET/alerts/latestMost recent alerts
GET/alertsPaginated history with filters
GET/alerts/:idSingle alert by ID
GET/statsSystem-wide stats
GET/meYour key info and usage
POST/webhooksRegister a webhook (Enterprise)
GET/webhooksList your webhooks (Enterprise)
DELETE/webhooks/:idRemove a webhook (Enterprise)

Responses

Everything is JSON. Success returns 200. Errors return the appropriate status code with a detail field:
{
  "detail": "Rate limit exceeded. pro tier: 300 req/min."
}

Pagination

/alerts uses page-based pagination. Max page_size depends on your tier.
{
  "alerts": [...],
  "total": 2226,
  "page": 1,
  "page_size": 50,
  "has_more": true
}
TierMax page_size
Free20
Pro50
Enterprise100