/bolt-ai-integration

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

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

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

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.

 

What Integration Really Means

 

There is no special “Bolt–Kentico connector.” What you build is a small service or script inside Bolt.new that:

  • Makes HTTP calls to Kentico’s Delivery API (REST or GraphQL)
  • Authenticates using a Delivery API key stored in Bolt.new environment variables
  • Fetches published content from Kentico
  • Optionally posts data back to Kentico (only if your Kentico instance is configured to allow management API access)
  • Uses the data in your AI agent, UI, or full-stack app

 

Step‑by‑Step: How to Integrate Kentico with Bolt.new

 

This works for both Kentico Xperience (on-prem) and Xperience by Kentico (SaaS). The exact URL differs, but the integration pattern is identical.

  • Create a Delivery API Key in Kentico. In Kentico Admin, go to the Delivery API settings and generate a key. This key lets an external system (your Bolt app) read your published content.
  • Add the API key to Bolt.new as an environment variable. Example name: KENTICO_API_KEY. Never hardcode it inside your code.
  • Get your Kentico Delivery API endpoint. Examples: Xperience by Kentico (SaaS): https://your-project.kenticocloud.com/delivery Xperience 13/14: often /api/delivery on your site’s domain.
  • Inside Bolt.new, write a simple fetch wrapper to pull content.

 

// 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;

 

How This Connects to Bolt.new AI Agents

 

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.

  • The agent calls your route.
  • Your route calls Kentico’s Delivery API.
  • The agent receives clean structured JSON content.

This is the robust and real way to integrate them.

 

Important Real‑World Notes

 

  • Kentico Delivery API is read‑only. If you want to update content, you must use Kentico’s management API or custom endpoints (depends on your Kentico version and security settings).
  • Keep all API keys in Bolt.new environment variables. Never commit or hardcode keys.
  • Your Bolt.new runtime is sandboxed. It can call external APIs, but it cannot open direct database connections to Kentico.
  • If you need webhooks, Kentico can send them to publicly reachable Bolt.new endpoints if you expose them with a tunnel (Bolt’s preview URLs usually work for this).

 

Summary

 

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.

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