Hardalion API platform

API keys, documentation, and usage in one place

Authenticate against api.hardalion.com, manage scoped keys, inspect usage, and try requests from the dashboard and playground. Technical reference is under Documentation.

What you get

Scoped API keys

Test and live keys with granular scopes. Revoke a key without rotating unrelated integrations.

Usage visibility

Metered calls and spend signals in the dashboard so teams can reconcile usage with budgets.

Stable API surface

Versioned routes under /v1, consistent error objects, and examples aligned with the docs.

Quick start

  1. Sign in to the dashboard and create a test API key.
  2. Read the documentation for authentication, scopes, and error codes.
  3. Example agent call (replace the key and body with values from your project):
    curl -X POST https://api.hardalion.com/v1/agents/execute \
      -H "Authorization: Bearer hdl_test_..." \
      -H "Content-Type: application/json" \
      -d '{"agent":{"model":"<your-model>","system_prompt":"You are helpful.","tools":[]},"prompt":"Hello"}'