Skip to content

OAuth 2.0 · API Reference · Developers

OAuth 2.0 authorization and token endpoints used by select third-party integrations that hold a Dailybot OAuth client.

OAuth 2.0 authorization and token endpoints used by select third-party integrations that hold a Dailybot OAuth client.

MethodEndpointDescription
GET/oauth/authorize/OAuth2 authorization endpoint
POST/o/token/OAuth2 token endpoint
GET/oauth/authorize/

OAuth2 authorization endpoint

Anonymousdefault

OAuth2 authorization endpoint

Errors

StatusWhen
401Missing/invalid/expired credential
403Authenticated but not permitted
429Throttled - Retry-After header set

Code samples

curl -sS -X GET 'https://api.dailybot.com/oauth/authorize/' -H 'X-API-KEY: $DAILYBOT_API_KEY'

Try it

This is a copy-only helper — the request is not sent from your browser. Paste the command into your terminal to execute it.

POST/o/token/

OAuth2 token endpoint

Anonymousdefault

OAuth2 token endpoint

Errors

StatusWhen
401Missing/invalid/expired credential
403Authenticated but not permitted
429Throttled - Retry-After header set
400Validation error

Code samples

curl -sS -X POST 'https://api.dailybot.com/o/token/' -H 'X-API-KEY: $DAILYBOT_API_KEY'

Try it

This is a copy-only helper — the request is not sent from your browser. Paste the command into your terminal to execute it.