Google Calendar
SandBaseapi
Published June 21, 2026
About
Access the Google Calendar API through OAuth. Manage events, calendars, and availability — powered by Nango Connector Gateway.
Documentation
Google Calendar Connector
Access the Google Calendar API through OAuth. Manage events, calendars, and availability.
Pricing
| Operation | Price |
|---|---|
| Successful API call (2xx) | $0.001 |
| Failed call (4xx/5xx) | Free |
Quick Test (curl)
# List calendars
curl -X POST https://api.sandbase.ai/v1/run \
-H "Authorization: Bearer sk-your-key" \
-H "Content-Type: application/json" \
-d '{"model": "google-calendar", "endpoint": "/calendar/v3/users/me/calendarList", "method": "GET"}'
# List events
curl -X POST https://api.sandbase.ai/v1/run \
-H "Authorization: Bearer sk-your-key" \
-H "Content-Type: application/json" \
-d '{"model": "google-calendar", "endpoint": "/calendar/v3/calendars/primary/events", "method": "GET", "params": {"maxResults": 5}}'
# Create event
curl -X POST https://api.sandbase.ai/v1/run \
-H "Authorization: Bearer sk-your-key" \
-H "Content-Type: application/json" \
-d '{"model": "google-calendar", "endpoint": "/calendar/v3/calendars/primary/events", "method": "POST", "body": {"summary": "Meeting", "start": {"dateTime": "2026-07-01T10:00:00Z"}, "end": {"dateTime": "2026-07-01T10:30:00Z"}}}'
Request Format
POST /v1/run
{
"model": "google-calendar",
"endpoint": "/calendar/v3/calendars/primary/events",
"method": "GET",
"params": {},
"headers": {},
"body": {},
"retries": 0
}
Common Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /calendar/v3/users/me/calendarList | List calendars |
| GET | /calendar/v3/calendars/primary/events | List events |
| POST | /calendar/v3/calendars/primary/events | Create an event |
📖 Full API reference: Google Calendar API Docs
Technical Specs
| Spec | Value |
|---|---|
| Auth | OAuth 2.0 (user-level) |
| Proxy | Nango (auto token refresh) |
| Execution | Sync |
| Rate limit | Inherits Google Calendar's API limits |
Try Google Calendar
Test this model in the Sandbase Playground with your own prompts.
Open in Playground