Step-by-step guide to integrating Bolt.new AI with Kentico in 2026 for smooth setup, improved automation, and smarter digital workflows

Book a call with an Expert
Starting a new venture? Need to upgrade your web app? RapidDev builds application with your growth in mind.
To integrate Bolt.new AI with Kentico, you do not connect “Bolt to Kentico” directly. Instead, inside Bolt.new you build a normal front‑end or backend service (Node.js) that talks to Kentico’s real APIs. Kentico exposes content via its Delivery API (REST or GraphQL depending on Kentico version) and requires you to authenticate using an API key. Bolt.new simply runs your code, so the integration is done exactly like any external API integration: store the API key as an environment variable, call the API over HTTPS, parse the JSON, and use it inside your AI workflows or UI.
There is no special “Bolt–Kentico connector.” What you build is a small service or script inside Bolt.new that:
This works for both Kentico Xperience (on-prem) and Xperience by Kentico (SaaS). The exact URL differs, but the integration pattern is identical.
KENTICO_API_KEY.
Never hardcode it inside your code.https://your-project.kenticocloud.com/delivery
Xperience 13/14: often /api/delivery on your site’s domain.
// Example: Node.js route inside Bolt.new to fetch content from Kentico Delivery API
import express from "express";
import fetch from "node-fetch";
const router = express.Router();
router.get("/kentico/articles", async (req, res) => {
try {
const apiKey = process.env.KENTICO_API_KEY; // stored securely in Bolt.new env vars
const response = await fetch(
"https://your-project.kenticocloud.com/delivery/items?system.type=article",
{
headers: {
Authorization: `Bearer ${apiKey}` // Delivery API requires this
}
}
);
if (!response.ok) {
return res.status(500).json({ error: "Kentico API request failed" });
}
const data = await response.json(); // Kentico returns standard JSON
res.json(data);
} catch (err) {
res.status(500).json({ error: err.message });
}
});
export default router;
Bolt.new’s AI agents can call any route you define. So after creating the endpoint above (/kentico/articles), your AI agent can request fresh Kentico content at runtime. You’re not integrating “AI directly into Kentico”; you’re building a small backend in Bolt.new that fetches Kentico content and exposes it to the agent.
This is the robust and real way to integrate them.
Integrating Bolt.new with Kentico means building a small backend within Bolt that uses HTTPS calls to Kentico’s Delivery API with an API key stored as an environment variable. From there, your AI agents and UIs inside Bolt can consume, transform, and use Kentico content in real time. It’s a clean, standard API integration — nothing proprietary, nothing magical.
When it comes to serving you, we sweat the little things. That’s why our work makes a big impact.