calendly-api
Calendly scheduling automation using REST API v2 for managing event types, availability, bookings, webhooks, and scheduling workflows
Best use case
calendly-api is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Calendly scheduling automation using REST API v2 for managing event types, availability, bookings, webhooks, and scheduling workflows
Teams using calendly-api should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/calendly-api/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How calendly-api Compares
| Feature / Agent | calendly-api | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Calendly scheduling automation using REST API v2 for managing event types, availability, bookings, webhooks, and scheduling workflows
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Calendly Api ## When to Use This Skill ### USE when: - Automating interview scheduling workflows - Building meeting booking integrations - Creating round-robin scheduling systems - Tracking scheduled events programmatically - Integrating calendars with CRM systems - Building appointment reminders - Creating custom booking confirmation flows - Automating follow-up sequences after meetings - Syncing Calendly with external calendars - Building scheduling analytics dashboards ### DON'T USE when: - Simple calendar display (use Google Calendar API) - Real-time video calls (use Zoom/Teams API) - Complex resource scheduling (use specialized tools) - Internal meeting coordination only (use calendar apps) - One-off manual scheduling (use Calendly UI directly) ## Prerequisites ### Calendly API Setup ```bash # 1. Get API credentials at https://calendly.com/integrations/api_webhooks # 2. Create a Personal Access Token or OAuth app # 3. Note: API v2 requires organization-level access for some endpoints # Personal Access Token: # - Go to Integrations > API & Webhooks # - Generate a new token # - Copy the token (shown only once) *See sub-skills for full details.* ### Python Environment Setup ```bash # Create virtual environment python -m venv calendly-env source calendly-env/bin/activate # Linux/macOS # calendly-env\Scripts\activate # Windows # Install dependencies pip install requests python-dotenv httpx aiohttp # Create requirements.txt *See sub-skills for full details.* ### API Client Setup ```python # client.py # ABOUTME: Calendly API client with authentication # ABOUTME: Handles requests, pagination, and error handling import os import requests from typing import Optional, Dict, Any, List from dotenv import load_dotenv *See sub-skills for full details.* ## Version History | Version | Date | Changes | |---------|------|---------| | 1.0.0 | 2026-01-17 | Initial release with comprehensive Calendly API v2 patterns | ## Resources - [Calendly API Documentation](https://developer.calendly.com/api-docs) - [Calendly Developer Portal](https://developer.calendly.com/) - [OAuth 2.0 Guide](https://developer.calendly.com/getting-started-with-oauth) - [Webhooks Guide](https://developer.calendly.com/api-docs/4e4e9a77ef8bc-webhooks) - [Rate Limits](https://developer.calendly.com/api-docs/rate-limiting) - [API Changelog](https://developer.calendly.com/api-changelog) --- *This skill provides production-ready patterns for Calendly scheduling automation, enabling seamless meeting coordination and booking workflows.* ## Sub-Skills - [1. User and Organization Management](1-user-and-organization-management/SKILL.md) - [2. Event Types](2-event-types/SKILL.md) - [3. Scheduled Events](3-scheduled-events/SKILL.md) - [4. Invitees](4-invitees/SKILL.md) - [5. Webhooks](5-webhooks/SKILL.md) - [6. Scheduling Links and Routing](6-scheduling-links-and-routing/SKILL.md) - [Slack Notification Integration](slack-notification-integration/SKILL.md) - [GitHub Actions Integration](github-actions-integration/SKILL.md) - [1. Rate Limiting (+3)](1-rate-limiting/SKILL.md) - [Common Issues (+1)](common-issues/SKILL.md)
Related Skills
baoyu-article-illustrator
Article illustrations: type × style × palette consistency.
vscode-extensions
VS Code productivity optimization with essential extensions, settings sync, profiles, keybindings, snippets, and workspace configuration
git-advanced
Advanced git workflows including rebase, worktrees, bisect, hooks, and monorepo patterns
docker
Complete Docker containerization patterns with multi-stage builds for development and production workflows
elite-frontend-ux
Create distinctive, production-grade frontend interfaces with expert-level UX design. Use when building SaaS dashboards, landing pages, marketing sites, React/Vue components, HTML/CSS layouts, or any web UI. Combines bold aesthetic direction with systematic design tokens, WCAG accessibility, conversion optimization, and Tailwind/React best practices. Produces polished, memorable interfaces that avoid generic AI aesthetics while meeting professional standards. type: reference
sphinx
Generate comprehensive Python documentation with Sphinx. Covers autodoc for API extraction, Napoleon for Google/NumPy docstrings, intersphinx for cross-references, and multiple output formats including HTML, PDF, and ePub.
pandoc
Universal document converter for transforming Markdown to PDF, DOCX, HTML, LaTeX, and 40+ other formats. Covers templates, filters, citations with BibTeX/CSL, and batch conversion automation scripts.
marp
Create professional Markdown-based slide presentations with Marp. Covers themes, directives, speaker notes, presenter view, and export to PDF, HTML, and PPTX formats. Includes VS Code integration, CLI usage, and CI/CD automation.
docusaurus
Build modern documentation websites with Docusaurus. Covers docs, blog, pages, versioning, i18n, search integration, and deployment patterns. React-based with MDX support for interactive documentation.
slack-api
Slack bot development and workspace automation using Web API, Events API, Socket Mode, and Block Kit for building interactive messaging applications
miro-api
Miro whiteboard automation using REST API v2 and Python SDK for creating boards, frames, shapes, connectors, and collaborative visual workflows
mkdocs
Build professional project documentation with MkDocs and Material theme. Covers site configuration, navigation, plugins, search optimization, versioning with mike, and deployment to GitHub Pages.