Public API

Free

Control 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

AreaEndpoints
AccountGET /v1/account
BotsGET /v1/bots, GET /v1/status, POST /v1/deploy, POST /v1/stop, POST /v1/delete
AnalyticsGET /v1/analytics
RevenueGET /v1/revenue
WebhooksPOST /v1/webhooks, GET /v1/webhooks, POST /v1/hooks/{id}

See the API reference for parameters, examples and responses.