Skip to main content
POST
/
public
/
v2
/
oauth
/
authorize
Start CLI OAuth flow
curl --request POST \
  --url https://api.dualentry.com/public/v2/oauth/authorize/ \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "redirect_uri": "<string>",
  "code_challenge": "<string>",
  "state": "<string>"
}
'
{
  "authorization_url": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.dualentry.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-KEY
string
header
required

Body

application/json
redirect_uri
string
required
code_challenge
string
required
code_challenge_method
enum<string>
required
Available options:
S256
state
string
required

Response

OK

authorization_url
string
required
Last modified on May 29, 2026