Redirect users to this URL in their browser to start the OAuth flow with a specific language preference.
curl --request GET \
--url https://id.kraken.com/{language}/oauth/authorize{
"code": "<string>",
"state": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://kraken-sandbox.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Language code for the authorization page
en-us, es-es, fil-ph, fr, de, it-it, nl, pl, pt-br, ru-ru, tr-tr, uk-ua, vi-vn, zh-cn Your client ID
The redirect URI for returning the user after authorization
The OAuth response type. For authorization code flow, this must be code.
code A space-separated list of scopes you want to authorize (optional). If empty, all scopes registered for your Client ID will be requested.
An opaque value to maintain state (optional). If provided, this value will be set as a query argument on the Redirect URI when the user is redirected back to your service.
Sets the theme color of the authorization page.
dark, light If the user authorizes, the server redirects the user's browser to your provided redirect_uri with an authorization code using the application/x-www-form-urlencoded format.
Example:
https://example.com/callback?code=AUTHORIZATION_CODE&state=YOUR_STATEhttps://example.com/callback?error=access_denied&state=YOUR_STATEcurl --request GET \
--url https://id.kraken.com/{language}/oauth/authorize{
"code": "<string>",
"state": "<string>"
}