Create with AI or code, deploy instantly on production infrastructure. One platform to build and ship.
How it works
Build your way.
Ship on one platform.
Every path runs on the same workflow and production infrastructure, powering millions of sites and apps.
Start with code or AI
Start with a prompt, push from Git, or drag and drop. All paths lead to the same project.
Build fullstack apps
Connect APIs, manage data, optimize images, and add AI features from your first prompt.
Go live everywhere
Ship to a global CDN in seconds. Fast for every user, instantly.
I can push a change, and within 30 seconds the site is completely rebuilt.
Use cases
For every kind of web app.
Build everything from marketing sites to AI apps on one platform.
Launch AI features with one gateway
Prototype, test, and scale AI-powered experiences faster. Product teams can iterate with agents while engineers productionize on the same platform.
- Prototype and ship AI features with Agent Runners
- Connect to OpenAI, Anthropic, and Gemini through AI Gateway
- Deploy backend logic as API endpoints with Serverless Functions
Example: Generate alt text with OpenAI
import OpenAI from "openai";
export default async (req: Request) => {
const { description } = await req.json();
const client = new OpenAI();
const res = await client.responses.create({
model: "gpt-5-mini",
input: [
{ role: "user", content: `Write concise alt text for: ${description}` },
],
});
return Response.json({ altText: res.output_text });
};
export const config = { path: "/api/alt-text" }; 10M+developers
60M+apps deployed
99.99%uptime
Start your way.
Choose the workflow that fits how you work.
Deploy from terminal
Ship directly from your working directory. No Git required.
npm i -g netlify-cli