API Reference
OAuth

Authorization endpoint

GET
/oauth/authorize

RFC 6749 §4.1 with PKCE. Redirects the browser to the Sautikit consent screen, which drives GET /v1/oauth/authorization/{req} and POST /v1/oauth/authorization/{req}/decision behind the session cookie. Deliberately not rate-limited: legitimate clients re-authorize.

Response Body

application/json

curl -X GET "https://example.com/oauth/authorize"
Empty
{  "error": {    "code": "validation.bad_request",    "message": "string",    "request_id": "string",    "details": [      "string"    ]  }}