Schedule a meeting or create a booking link for a prospect
schedule-meeting
Recommended
Cal.com
by cal.comOpen-source scheduling. Full API for creating booking links, managing availability, and scheduling. Self-hostable.
Auth: api_key
Setup: low
Pricing: Free for individuals. Team plans start at $12/user/mo.
Example API call
POST https://api.cal.com/v2/bookings
{
"eventTypeId": 123,
"start": "2026-03-20T14:00:00Z",
"attendee": {
"name": "Alex Johnson",
"email": "alex@acmecorp.com"
}
}
// Response:
{
"id": 456,
"uid": "bk_abc123",
"status": "ACCEPTED",
"startTime": "2026-03-20T14:00:00Z",
"meetingUrl": "https://meet.google.com/abc-def-ghi"
}Alternatives
Calendlyby calendly.com
Most widely adopted scheduling tool. Solid API but less flexible than Cal.com for programmatic use.