Ntanglenet API authentication
All API requests must include a valid API key or token. This page explains how to authenticate safely.
API keys
API keys are long-lived credentials. Use them for server-side or backend integrations only.
| Header | Example |
|---|---|
Authorization | Bearer sk_live_... |
Create and rotate keys from the dashboard.
Scopes
Keys can be restricted by scope. Common scopes:
read— Read resourceswrite— Create and update resourcesadmin— Full access (use sparingly)
Best practices
- Never expose keys in client-side code — Use a backend to proxy requests.
- Rotate keys periodically — Especially if you suspect a leak.
- Use the minimum scope — Prefer
readorwriteoveradminwhen possible.
Next steps
- Quick integration guide — Build a minimal integration
- API reference — Full endpoint documentation