# Blink Calendly

> Check Calendly availability, list scheduled events, and manage event types. Use when asked about upcoming meetings, scheduling links, or booking status. Requires a linked Calendly connection.

- Skill: `blink-new/blink-calendly` (Agent Skill)
- Install (CLI): `npx skillmds@latest add blink-new/blink-calendly`
- Raw SKILL.md: https://api.skillmd.com/api/skills/blink-new/blink-calendly/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: blink-new (https://skillmd.com/u/blink-new)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/blink-new/blink-calendly

---


# Blink Calendly

Access the user's linked Calendly account. Provider key: `calendly`.

## Get current user info
```bash
blink connector exec calendly /users/me GET
```

## List scheduled events
```bash
blink connector exec calendly /scheduled_events GET '{"user":"https://api.calendly.com/users/{uuid}","count":20}'
```

## Get event details
```bash
blink connector exec calendly /scheduled_events/{uuid} GET
```

## List event invitees (attendees)
```bash
blink connector exec calendly /scheduled_events/{uuid}/invitees GET
```

## List event types (booking pages)
```bash
blink connector exec calendly /event_types GET '{"user":"https://api.calendly.com/users/{uuid}"}'
```

## Get a specific event type
```bash
blink connector exec calendly /event_types/{uuid} GET
```

## List upcoming events (active)
```bash
blink connector exec calendly /scheduled_events GET '{"user":"https://api.calendly.com/users/{uuid}","status":"active","min_start_time":"2024-03-01T00:00:00Z"}'
```

## Common use cases
- "What meetings do I have scheduled this week?" → GET /scheduled_events with time filters
- "List my Calendly booking page types" → GET /event_types
- "Who signed up for my office hours?" → GET /scheduled_events/{uuid}/invitees
- "How many meetings did I have last month?" → GET /scheduled_events with date range
- "Get my Calendly profile info" → GET /users/me

