/bolt-ai-integration

Bolt.new AI and Calendly integration: Step-by-Step Guide 2025

Learn how to connect Bolt.new AI with Calendly in 2026 using our simple step-by-step guide to streamline bookings and automation.

Matt Graham, CEO of Rapid Developers

Book a call with an Expert

Starting a new venture? Need to upgrade your web app? RapidDev builds application with your growth in mind.

Book a free No-Code consultation

How to integrate Bolt.new AI with Calendly?

Bolt.new does not have any built‑in “Calendly integration button.” You integrate Calendly the same way you would in any normal full‑stack app: you call Calendly’s public REST API, authenticate with a Calendly Personal Access Token or OAuth, and optionally receive data from Calendly using their webhooks. Inside bolt.new, you drop that token into environment variables and write fetch‑based API calls in server‑side code. That’s the entire mechanics — nothing magical, just standard HTTP.

 

What the integration actually looks like

 

You will use three components:

  • A Calendly API token or OAuth app to authenticate requests from your bolt.new backend.
  • Server-side code in bolt.new (Node.js) to call Calendly’s REST API.
  • (Optional) A Calendly webhook subscription that points to a server route you expose in bolt.new.

Once these are set up, your bolt.new app can list events, create scheduling links, read invitee data, or handle “booking completed” notifications from Calendly.

 

Step-by-step: Integrating Calendly with bolt.new

 

The point is to keep Calendly secrets safe and do all API calls on the server, not the browser.

  • Create a Calendly Personal Access Token (https://developer.calendly.com/api-docs) Store it as an environment variable in bolt.new like: CALENDLY_API_TOKEN
  • Create a server route in bolt.new that calls Calendly’s API. Bolt.new server code uses standard Node.js. Here is a real working pattern:

 

// Example: server route in bolt.new to fetch Calendly scheduled events

import { Hono } from 'hono'    // Bolt’s default server framework
import { env } from 'hono/adapter'

const app = new Hono()

app.get('/api/calendly/events', async (c) => {
  const { CALENDLY_API_TOKEN } = env(c)

  const response = await fetch('https://api.calendly.com/scheduled_events', {
    method: 'GET',
    headers: {
      'Authorization': `Bearer ${CALENDLY_API_TOKEN}`,
      'Content-Type': 'application/json'
    }
  })

  const data = await response.json()
  return c.json(data)
})

export default app

 

This is a direct, real call to Calendly’s /scheduled\_events endpoint.

  • Expose this route to your front‑end: your client (React, Svelte, plain JS) calls /api/calendly/events. The client never sees the token — only the backend uses it.

 

Optional: Receiving events from Calendly via webhooks

 

If you want Calendly to notify your bolt.new backend when someone books, reschedules, or cancels, you must create a webhook subscription.

  • Create a public route in bolt.new that Calendly can POST to:

 

// Calendly webhook receiver

app.post('/webhooks/calendly', async (c) => {
  const body = await c.req.json()

  // Verify the webhook signature if you enabled signing
  // For now, just log the event:
  console.log('Calendly webhook:', body)

  return c.json({ received: true })
})

 

  • Register the webhook using Calendly’s API and your server URL:

 

// Example: create a Calendly webhook subscription from bolt.new server

app.post('/api/calendly/register-webhook', async (c) => {
  const { CALENDLY_API_TOKEN, PUBLIC_URL } = env(c)

  const response = await fetch('https://api.calendly.com/webhook_subscriptions', {
    method: 'POST',
    headers: {
      'Authorization': `Bearer ${CALENDLY_API_TOKEN}`,
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      url: `${PUBLIC_URL}/webhooks/calendly`,  // Your bolt.new route
      events: ['invitee.created', 'invitee.canceled'],
      organization: 'https://api.calendly.com/organizations/YOUR_ORG_ID' // Replace with your real org ID
    })
  })

  const data = await response.json()
  return c.json(data)
})

 

How to test inside bolt.new

 

  • Use the built-in server logs to view API responses and webhook payloads.
  • Test using Calendly’s public preview tools or by scheduling actual test appointments.
  • Verify CORS only applies to browser → server, not server → Calendly.

 

How to harden it for production deployments

 

  • Move tokens to environment variables in your real hosting environment (Vercel, Render, Railway, etc.).
  • Add webhook signature verification — Calendly provides an HMAC signature header.
  • Rate limit your endpoints because Calendly enforces rate limits.

 

That’s the full, real path: Calendly + bolt.new = a normal backend integration using REST APIs, bearer tokens, and optional webhooks. Nothing proprietary or magical — just clean, secure HTTP with environment variables and server routes.

Want to explore opportunities to work with us?

Connect with our team to unlock the full potential of no-code solutions with a no-commitment consultation!

Book a Free Consultation

Client trust and success are our top priorities

When it comes to serving you, we sweat the little things. That’s why our work makes a big impact.

Rapid Dev was an exceptional project management organization and the best development collaborators I've had the pleasure of working with. They do complex work on extremely fast timelines and effectively manage the testing and pre-launch process to deliver the best possible product. I'm extremely impressed with their execution ability.

CPO, Praction - Arkady Sokolov

May 2, 2023

Working with Matt was comparable to having another co-founder on the team, but without the commitment or cost. He has a strategic mindset and willing to change the scope of the project in real time based on the needs of the client. A true strategic thought partner!

Co-Founder, Arc - Donald Muir

Dec 27, 2022

Rapid Dev are 10/10, excellent communicators - the best I've ever encountered in the tech dev space. They always go the extra mile, they genuinely care, they respond quickly, they're flexible, adaptable and their enthusiasm is amazing.

Co-CEO, Grantify - Mat Westergreen-Thorne

Oct 15, 2022

Rapid Dev is an excellent developer for no-code and low-code solutions.
We’ve had great success since launching the platform in November 2023. In a few months, we’ve gained over 1,000 new active users. We’ve also secured several dozen bookings on the platform and seen about 70% new user month-over-month growth since the launch.

Co-Founder, Church Real Estate Marketplace - Emmanuel Brown

May 1, 2024 

Matt’s dedication to executing our vision and his commitment to the project deadline were impressive. 
This was such a specific project, and Matt really delivered. We worked with a really fast turnaround, and he always delivered. The site was a perfect prop for us!

Production Manager, Media Production Company - Samantha Fekete

Sep 23, 2022