Google Calendar

list_events

Lists events within a specified time range

Input Schema

NameRequiredDescriptionDefault
maxResultsNoMaximum number of events to return
orderByNoSort order
timeMaxYesEnd of time range (ISO format)
timeMinYesStart of time range (ISO format)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "maxResults": { "description": "Maximum number of events to return", "type": "number" }, "orderBy": { "description": "Sort order", "enum": [ "startTime", "updated" ], "type": "string" }, "timeMax": { "description": "End of time range (ISO format)", "type": "string" }, "timeMin": { "description": "Start of time range (ISO format)", "type": "string" } }, "required": [ "timeMin", "timeMax" ], "type": "object" }