API guide
Getting startedFrom a new API key to a production-ready request in a few minutes.
1. Create an API keyOpen Panel Settings API keys. Give the key only the scopes your integration needs. The secret is displayed once; store it in a secrets manager.
2. Export the secret
Shell
export AS213905_API_KEY='as213905_…'
Never commit a key
Do not put API keys in source code, browser bundles, query strings or logs. Use environment variables or your deployment platform's secret store.
3. Verify the organisation
Request
curl --fail-with-body \
  -H "Authorization: Bearer $AS213905_API_KEY" \
  -H "Accept: application/json" \
  https://as213905.com/api/v1/organization
200 response
{
  "organization": {
    "id": "9f44e0e7-13d4-4af3-bc6e-76b91c93b752",
    "asn": 213905,
    "name": "Example Networks GmbH",
    "status": "active",
    "commit_kbps": 1000000
  }
}
4. Choose raw HTTP or an SDKRaw HTTP is ideal for shell automation and one-off integrations. Official SDKs provide typed methods, timeouts, query encoding and structured API errors for long-running applications.Compare the official SDKs