Skip to content

API Keys

Cloud Only

API keys are available in the Cloud version only.

API keys let you access ADHDev's REST API from external services, scripts, or integrations.

Creating an API Key

  1. Go to Dashboard → API Keys
  2. Click Create API Key
  3. Enter a descriptive name
  4. Copy the key — it won't be shown again!

API keys are prefixed with adk_ for easy identification.

Using API Keys

Include the key in the Authorization header:

bash
curl -H "Authorization: Bearer adk_your_key_here" \
     https://api.adhf.dev/api/v1/daemons

Available Endpoints

MethodEndpointDescription
GET/api/v1/daemonsList connected machines
GET/api/v1/daemons/{id}/idesList IDEs on a machine
POST/api/v1/agents/{ideId}/sendSend message to agent
POST/api/v1/agents/{ideId}/approveApprove/reject action
GET/api/v1/agents/{ideId}/chatRead current chat

See the full API Reference →

Plan Limits

PlanMonthly API Calls
Free1,000
Pro50,000
Team500,000
EnterpriseUnlimited

Security

  • Keys are hashed before storage — we can't see your key
  • Revoke keys anytime from the API Keys page
  • Each key can be scoped to specific permissions

Released under the AGPL-3.0 License (OSS) / Proprietary (Cloud)