/bolt-ai-integration

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

Learn how to integrate Bolt.new AI with UserTesting in 2026 with this clear step-by-step guide to streamline workflows and boost insights.

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 UserTesting?

There is no native or direct “Bolt.new → UserTesting” integration. The way you integrate them is by treating Bolt.new as a place where you scaffold a backend or script that talks to the UserTesting REST API using normal HTTP requests with an API token. Bolt itself does not connect automatically to UserTesting — you must write the API calls, store credentials as environment variables, and build whatever workflow you want (create tests, fetch participant data, pull insights, etc.).

Everything works through standard REST API calls. You authenticate using a UserTesting Bearer token, send requests to their public API endpoints, and Bolt.new simply runs the JavaScript or Python code that calls those endpoints. From there you can automate tasks like creating tests or fetching results.

 

What You Actually Do

 

You integrate Bolt.new AI with UserTesting by writing code inside a Bolt.new project that calls the official UserTesting REST API. You store the API key in Bolt’s environment variables, write functions to call UserTesting endpoints, test them in Bolt’s preview server, then deploy the final service outside Bolt once it works.

 

  • Bolt.new = your coding workspace. It doesn’t have pre-built connectors. You write the integration.
  • UserTesting = provides an authenticated REST API. This is the only official integration path.
  • Authentication = Bearer token. You store this token in Bolt’s environment vars.
  • Your code = makes HTTPS requests. Usually via fetch() in Node or axios.

 

Step-by-step: How to integrate via Bolt.new

 

You can explain this to a junior developer: “We write a small backend in Bolt.new that connects to UserTesting’s API using a secret key.”

  • Create a Bolt.new project (Node.js is simplest).
  • Open the Environment Variables panel and add: USERTESING_API_TOKEN = your_real_token\_here
  • Use fetch()/axios to call UserTesting’s REST API.
  • Test inside Bolt.new’s preview server.

 

Minimal working example (Node.js in Bolt)

 

// Example: Fetching your UserTesting account details
// Works in a Bolt.new Node server or script

import express from "express";
import fetch from "node-fetch";

const app = express();

app.get("/usertesting/account", async (req, res) => {
  try {
    const response = await fetch("https://api.usertesting.com/v1/account", {
      method: "GET",
      headers: {
        Authorization: `Bearer ${process.env.USERTESING_API_TOKEN}`, // store this in Bolt env vars
        "Content-Type": "application/json"
      }
    });

    if (!response.ok) {
      return res.status(500).json({ error: "UserTesting API error", detail: await response.text() });
    }

    const data = await response.json();
    res.json(data);
  } catch (err) {
    res.status(500).json({ error: "Integration failed", detail: err.message });
  }
});

app.listen(3000, () => console.log("Bolt integration server running on port 3000"));

 

What this gives you

 

  • You can create UserTesting tests programmatically.
  • You can fetch completed test results into your own UI.
  • You can automate workflows (e.g., run tests after deployments).
  • You can connect UserTesting to any front-end you prototype inside Bolt.

 

Security and deployment

 

  • Keep the Bearer token only in environment variables, never in code.
  • Bolt.new is safe for development, but you’ll deploy the final API server elsewhere (Vercel, Render, AWS).
  • UserTesting tokens often have scope restrictions — check the docs before automating test creation.

 

Summary

 

You integrate Bolt.new AI with UserTesting by writing normal REST API calls from within Bolt’s workspace, using a UserTesting API token stored in environment variables. Bolt.new acts only as your coding and testing environment — the actual integration is just your code talking to UserTesting’s official API. This is the only real and supported method today.

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