Public API
FreeControl your deployed bots from your own code — free, key-authenticated.
The dev>nulll API lets you manage your deployed bots from your own code or services: list bots, deploy and stop them, and read analytics and revenue. It’s free — you only need a paid plan for the underlying server hosting (deploying a bot 24/7), exactly as in the app.
- Base URL:
https://api.devnulll.dev/v1 - Format: JSON request and response bodies.
- Auth: an API key, sent on every request (see below).
Getting an API key
Sign in to your account and create a key under API keys. The key is shown
once — copy it and store it safely. Keys look like dnk_…. You can create several (one per
app/service) and revoke any of them at any time.
Authenticating
Send your key on every request, in either header:
# Bearer
curl https://api.devnulll.dev/v1/bots \
-H "Authorization: Bearer dnk_your_key_here"
# or X-API-Key
curl https://api.devnulll.dev/v1/bots \
-H "X-API-Key: dnk_your_key_here"
A missing or invalid key returns 401. Keep keys secret — anyone with a key can act on your account’s bots. Reads (list, status, analytics, revenue) are free; deploying a bot still requires an active subscription and returns 402 without one.
What you can do
| Area | Endpoints |
|---|---|
| Account | GET /v1/account |
| Bots | GET /v1/bots, GET /v1/status, POST /v1/deploy, POST /v1/stop, POST /v1/delete |
| Analytics | GET /v1/analytics |
| Revenue | GET /v1/revenue |
| Webhooks | POST /v1/webhooks, GET /v1/webhooks, POST /v1/hooks/{id} |
See the API reference for parameters, examples and responses.