Calendly
SandBaseapi
Published June 21, 2026
About
Access the Calendly API through OAuth. Read scheduled events, event types, and invitees — powered by Nango Connector Gateway.
Documentation
Calendly Connector
Access the Calendly API through OAuth. Read scheduled events, event types, and invitees.
Pricing
| Operation | Price |
|---|---|
| Successful API call (2xx) | $0.001 |
| Failed call (4xx/5xx) | Free |
Quick Test (curl)
# Get current user
curl -X POST https://api.sandbase.ai/v1/run \
-H "Authorization: Bearer sk-your-key" \
-H "Content-Type: application/json" \
-d '{"model": "calendly", "endpoint": "/users/me", "method": "GET"}'
# List event types
curl -X POST https://api.sandbase.ai/v1/run \
-H "Authorization: Bearer sk-your-key" \
-H "Content-Type: application/json" \
-d '{"model": "calendly", "endpoint": "/event_types", "method": "GET", "params": {"user": "https://api.calendly.com/users/UUID"}}'
Request Format
POST /v1/run
{
"model": "calendly",
"endpoint": "/users/me",
"method": "GET",
"params": {},
"headers": {},
"body": {},
"retries": 0
}
Common Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /users/me | Current user info |
| GET | /event_types | List event types |
| GET | /scheduled_events | List scheduled events |
📖 Full API reference: Calendly API Docs
Technical Specs
| Spec | Value |
|---|---|
| Auth | OAuth 2.0 (user-level) |
| Proxy | Nango (auto token refresh) |
| Execution | Sync |
| Rate limit | Inherits Calendly's API limits |
Try Calendly
Test this model in the Sandbase Playground with your own prompts.
Open in Playground