Sign in

Obtain tokens

documented

Exchanges an authorization grant (e.g., authorization_code, password, client_credentials, refresh_token) for access and/or refresh tokens.

POST /oauth/tokenAuthentication APIno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{$AUTH0_DOMAIN}}/oauth/token" \
  -X POST \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d 'grant_type=client_credentials&client_id={{$AUTH0_CLIENT_ID}}&client_secret={{$AUTH0_CLIENT_SECRET}}&audience={{$AUTH0_AUDIENCE}}'