Authorization header on every request.
Method 1 — API key
API keys are the recommended method for programmatic access. Keys are prefixed withdc_ and do not expire.
You can generate or reveal your API key from the DeepCurrent dashboard or via GET /api/v1/users/me/api-key?reveal=true.
API keys are shown only once at generation time. Store the key securely — if you lose it you must request a regeneration via
POST /api/v1/users/me/api-key/regenerate-request.Method 2 — JWT (email + password)
Exchange your email and password for a short-lived JWT access token. This is suitable for interactive sessions and testing.Endpoint
Request
Send asapplication/x-www-form-urlencoded:
Your account email address.
Your account password.
Response
The JWT token to use as a Bearer credential.
Always
"bearer".Example
Response
access_token as your Bearer token on subsequent requests: