Google Workspace APIs Calendar API

The Calendar API from Google Workspace APIs — 3 operation(s) for calendar.

Operations 6

GET /calendar/v3/users/me/calendarList List the user's calendars #
GET /calendar/v3/calendars/{calendarId}/events List events in a calendar #
POST /calendar/v3/calendars/{calendarId}/events Create an event #
GET /calendar/v3/calendars/{calendarId}/events/{eventId} Get an event #
PATCH /calendar/v3/calendars/{calendarId}/events/{eventId} Patch an event #
DELETE /calendar/v3/calendars/{calendarId}/events/{eventId} Delete an event #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/google-suites-calendar-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

google-suites-calendar-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Workspace APIs (Gmail, , Drive) Calendar API
  description: Best-effort OpenAPI 3.1 covering the most commonly used REST endpoints for the Gmail API (gmail.googleapis.com), Google Calendar API (calendar.googleapis.com / www.googleapis.com/calendar), and Google Drive API (www.googleapis.com/drive). All services use Google OAuth 2.0.
  version: v1
servers:
- url: https://gmail.googleapis.com
  description: Gmail API
- url: https://www.googleapis.com
  description: Calendar / Drive API host
security:
- googleOAuth: []
tags:
- name: Calendar
paths:
  /calendar/v3/users/me/calendarList:
    get:
      tags:
      - Calendar
      summary: List the user's calendars
      operationId: calendar.calendarList.list
      servers:
      - url: https://www.googleapis.com
      parameters:
      - in: query
        name: maxResults
        schema:
          type: integer
      - in: query
        name: pageToken
        schema:
          type: string
      responses:
        '200':
          description: CalendarList
  /calendar/v3/calendars/{calendarId}/events:
    get:
      tags:
      - Calendar
      summary: List events in a calendar
      operationId: calendar.events.list
      servers:
      - url: https://www.googleapis.com
      parameters:
      - in: path
        name: calendarId
        required: true
        schema:
          type: string
      - in: query
        name: timeMin
        schema:
          type: string
          format: date-time
      - in: query
        name: timeMax
        schema:
          type: string
          format: date-time
      - in: query
        name: singleEvents
        schema:
          type: boolean
      - in: query
        name: orderBy
        schema:
          type: string
          enum:
          - startTime
          - updated
      responses:
        '200':
          description: Events
    post:
      tags:
      - Calendar
      summary: Create an event
      operationId: calendar.events.insert
      servers:
      - url: https://www.googleapis.com
      parameters:
      - in: path
        name: calendarId
        required: true
        schema:
          type: string
      - in: query
        name: sendUpdates
        schema:
          type: string
          enum:
          - all
          - externalOnly
          - none
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Event'
      responses:
        '200':
          description: Event
  /calendar/v3/calendars/{calendarId}/events/{eventId}:
    get:
      tags:
      - Calendar
      summary: Get an event
      operationId: calendar.events.get
      servers:
      - url: https://www.googleapis.com
      parameters:
      - in: path
        name: calendarId
        required: true
        schema:
          type: string
      - in: path
        name: eventId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Event
    patch:
      tags:
      - Calendar
      summary: Patch an event
      operationId: calendar.events.patch
      servers:
      - url: https://www.googleapis.com
      parameters:
      - in: path
        name: calendarId
        required: true
        schema:
          type: string
      - in: path
        name: eventId
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Event'
      responses:
        '200':
          description: Event
    delete:
      tags:
      - Calendar
      summary: Delete an event
      operationId: calendar.events.delete
      servers:
      - url: https://www.googleapis.com
      parameters:
      - in: path
        name: calendarId
        required: true
        schema:
          type: string
      - in: path
        name: eventId
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Deleted
components:
  schemas:
    Event:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
        summary:
          type: string
        description:
          type: string
        location:
          type: string
        start:
          type: object
          properties:
            dateTime:
              type: string
              format: date-time
            timeZone:
              type: string
        end:
          type: object
          properties:
            dateTime:
              type: string
              format: date-time
            timeZone:
              type: string
        attendees:
          type: array
          items:
            type: object
            properties:
              email:
                type: string
              responseStatus:
                type: string
  securitySchemes:
    googleOAuth:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://accounts.google.com/o/oauth2/v2/auth
          tokenUrl: https://oauth2.googleapis.com/token
          scopes:
            https://www.googleapis.com/auth/gmail.modify: Gmail read/write
            https://www.googleapis.com/auth/gmail.send: Gmail send
            https://www.googleapis.com/auth/calendar: Calendar full access
            https://www.googleapis.com/auth/calendar.events: Calendar events
            https://www.googleapis.com/auth/drive: Drive full access
            https://www.googleapis.com/auth/drive.file: Drive per-file access