Skip to main content
GET
/
me
curl -H "Authorization: Bearer YOUR_KEY_HERE" \
  https://polychadsbot.xyz/api/v1/me
{
  "name": "My Prod Bot",
  "tier": "pro",
  "rate_limit": "300/min",
  "websocket": true,
  "webhooks": false,
  "realtime": true,
  "max_page_size": 50,
  "requests_today": 1240
}
Not sure if you’re hitting your rate limits or if your 30-day Pro trial expired? Drop your key in here. We’ll bounce back exactly what your integration is currently allowed to do.
curl -H "Authorization: Bearer YOUR_KEY_HERE" \
  https://polychadsbot.xyz/api/v1/me
{
  "name": "My Prod Bot",
  "tier": "pro",
  "rate_limit": "300/min",
  "websocket": true,
  "webhooks": false,
  "realtime": true,
  "max_page_size": 50,
  "requests_today": 1240
}

Response Breakdown

FieldTypeWhat it tells you
namestringAny custom label you’ve set for this key (useful for managing multiple integrations).
tierstringEither free, pro, or enterprise.
rate_limitstringYour hard cap limits (e.g., 300/min).
websocketbooleanTrue if you have access to the /ws/alerts live stream.
webhooksbooleanTrue if you can register HTTP endpoints for push delivery.
realtimebooleanTrue if you get alerts instantly, False if you have the 5-minute Free tier delay.
max_page_sizeintegerMax results you can request per page on the /alerts REST endpoint.
requests_todayintegerTotal API calls you’ve made since UTC midnight.
Building a front-end? Hit this endpoint on page load to check if the user’s provided API key is valid before opening any WebSocket connections.

Authorizations

Authorization
string
header
required

Your API key — get one from @chadsapibot on Telegram

Response

200 - application/json

Key info

name
string
tier
string
rate_limit
string
websocket
boolean
webhooks
boolean
realtime
boolean
max_page_size
integer
requests_today
integer