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.
| Method | Endpoint | Description |
|---|---|---|
| GET | /oauth/authorize/ | OAuth2 authorization endpoint |
| POST | /o/token/ | OAuth2 token endpoint |
OAuth2 authorization endpoint
Anonymousdefault
OAuth2 authorization endpoint
Errors
| Status | When |
|---|---|
| 401 | Missing/invalid/expired credential |
| 403 | Authenticated but not permitted |
| 429 | Throttled - 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.
OAuth2 token endpoint
Anonymousdefault
OAuth2 token endpoint
Errors
| Status | When |
|---|---|
| 401 | Missing/invalid/expired credential |
| 403 | Authenticated but not permitted |
| 429 | Throttled - Retry-After header set |
| 400 | Validation 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.