Registering an OAuth App
Register a connectable application, configure redirect URIs, scopes, and test users.
Registering an OAuth App
POST/apps
Dashboard Session (Cookie + CSRF)
To build connectable applications, register your app inside a Developer Organization in the Zorveus Dashboard.
App Registration Fields
| Field | Description | Example |
|---|---|---|
name | User-facing application name shown on consent screen | Cursor IDE Extension |
redirect_uris | Exact matching HTTPS redirect destinations | https://myapp.com/api/auth/callback |
allowed_models | Model families your app will request | openai/*, anthropic/* |
scopes | Permissions requested (inference:write, models:read) | inference:write |
cap_policy | Default, minimum, and maximum recommended monthly spending caps | Default: $20.00 |
Exact Matching Redirect URIs
Zorveus enforces strict string matching on redirect_uri. Wildcards, path traversals, or scheme variations (e.g. http:// in production) will be rejected during authorization requests.
Was this page helpful?
Edit this page on GitHub