Google Calendar logo

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

OperationPrice
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

MethodEndpointDescription
GET/calendar/v3/users/me/calendarListList calendars
GET/calendar/v3/calendars/primary/eventsList events
POST/calendar/v3/calendars/primary/eventsCreate an event

📖 Full API reference: Google Calendar API Docs

Technical Specs

SpecValue
AuthOAuth 2.0 (user-level)
ProxyNango (auto token refresh)
ExecutionSync
Rate limitInherits Google Calendar's API limits

Try Google Calendar

Test this model in the Sandbase Playground with your own prompts.

Open in Playground