
Google Calendar Create Event (Tool)
Pricing
Pay per event

Google Calendar Create Event (Tool)
Create Google Calendar events using your own API credentials. Perfect for AI agents via MCP integration. Schedule meetings, appointments & events automatically. Secure, fast, and works with Claude & custom AI tools. Integrate with your agent using: "Actors MCP server"- Apify.
0.0 (0)
Pricing
Pay per event
0
1
1
Last modified
8 hours ago
You can access the Google Calendar Create Event (Tool) programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโll need an Apify account and your API token, found in Integrations settings in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "businessId": "my_business_name",10 "googleCredentials": {11 "access_token": "๐ Paste your 'Access token' here (starts with ya29.)",12 "refresh_token": "๐ Paste your 'Refresh token' here (starts with 1//)",13 "client_id": "๐ Paste your Client ID here (ends with .googleusercontent.com)",14 "client_secret": "๐ Paste your Client Secret here",15 },16 "eventData": {17 "summary": "Appointment - Customer Name",18 "description": """Customer phone: 555-123419Notes: First visit, needs consultation""",20 "start": {21 "dateTime": "2025-08-15T14:00:00-07:00",22 "timeZone": "America/Los_Angeles",23 },24 "end": {25 "dateTime": "2025-08-15T15:00:00-07:00",26 "timeZone": "America/Los_Angeles",27 },28 "attendees": [{29 "email": "customer@example.com",30 "displayName": "Customer Name",31 }],32 "location": "123 Main St, Your City, State",33 "reminders": {34 "useDefault": False,35 "overrides": [36 {37 "method": "email",38 "minutes": 1440,39 },40 {41 "method": "popup",42 "minutes": 60,43 },44 ],45 },46 },47}48
49# Run the Actor and wait for it to finish50run = client.actor("sambehnke/google-calendar-create-event").call(run_input=run_input)51
52# Fetch and print Actor results from the run's dataset (if there are any)53print("๐พ Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])54for item in client.dataset(run["defaultDatasetId"]).iterate_items():55 print(item)56
57# ๐ Want to learn more ๐? Go to โ https://docs.apify.com/api/client/python/docs/quick-start
Google Calendar Create Event (Tool) API in Python
The Apify API client for Python is the official library that allows you to use Google Calendar Create Event (Tool) API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-client
Other API clients include: