Developer Platform

Build websites with AI agents

Full REST API, MCP server, and agent self-signup. Generate, edit, and deploy websites programmatically.

Get API Keys

Generate websites with a single request

Send a prompt, receive a fully built website. The API handles AI generation, hosting, and deployment. Authenticate with your API key and start building.

curl
curl -X POST https://nccnasarzekslweasfpw.supabase.co/functions/v1/api-v1 \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "action": "generate_website",
    "params": {
      "prompt": "A portfolio site for a freelance photographer",
      "style": "modern"
    }
  }'

Returns a complete website with HTML, CSS, and JavaScript. Deploy it instantly or edit it further via the API.

View full API docs

Give Claude direct access to website building

The ChilledSites MCP server connects Claude Desktop and Claude Code to 13 tools for generating, editing, deploying websites, and creating media.

$ npx -y @chilledsites/mcp-server
Claude Desktop config
{
  "mcpServers": {
    "chilledsites": {
      "command": "npx",
      "args": ["-y", "@chilledsites/mcp-server"],
      "env": {
        "CHILLEDSITES_API_KEY": "your-api-key"
      }
    }
  }
}
Claude Code
claude mcp add chilledsites -- npx -y @chilledsites/mcp-server

Once connected, Claude can generate websites, create images, deploy sites, and manage your account with natural language.

AI agents sign up themselves

No human sign-up flow required. Agents call the registration endpoint and receive API credentials instantly. Build fully autonomous website generation pipelines.

curl
curl -X POST https://nccnasarzekslweasfpw.supabase.co/functions/v1/agent-signup \
  -H "Content-Type: application/json" \
  -d '{
    "email": "agent@example.com",
    "agent_name": "my-website-bot"
  }'

The response includes an API key and account ID. The agent can immediately start generating and deploying websites.

Everything you need to build, manage, and deploy

Available through both the REST API and MCP server. Each tool maps to a single API action.

generate_website
Generate a complete website from a text prompt using AI
create_website_from_code
Create a website from your own HTML, CSS, and JS code
list_websites
List all websites in your account
get_website
Get full details and code for a specific website
update_website
Update a website's name, code, or metadata
delete_website
Permanently delete a website from your account
deploy_website
Deploy a website to a live URL with one call
get_token_balance
Check your remaining token balance
generate_image
Generate images with Imagen 3, DALL-E 3, or Grok
generate_video
Generate videos with Google Veo 2 or OpenAI Sora
generate_ad
Generate a complete video ad with voiceover
list_ad_templates
Browse available ad templates
get_ad_templates_by_platform
Get ad templates filtered by platform (Instagram, TikTok, etc.)

How developers use the API

From CI/CD pipelines to conversational chatbots, the API fits into any automation workflow.

CI/CD Pipelines

Generate and deploy landing pages automatically as part of your release process. Trigger builds from GitHub Actions or any CI system.

Chatbots

Let your chatbot create websites for users in real time. Users describe what they want, your bot builds and deploys it.

Bulk Generation

Generate hundreds of localised landing pages from a spreadsheet of business data. Each site gets its own URL and deployment.

Claude Code Workflow

Use the MCP server to build and deploy websites directly from your terminal via Claude Code. No context switching.

Developer questions

You need a ChilledSites account with tokens. API calls consume the same tokens as the web UI. Token packs start from £8. There is no separate API pricing tier.
Website generation uses Claude (Anthropic) for HTML, CSS, and JavaScript. Image generation supports Gemini Imagen 3, DALL-E 3, and Grok. Video generation uses Google Veo 2 and OpenAI Sora.
Pass your API key in the Authorization header as a Bearer token. Get your API key from the developer dashboard at chilledsites.com/developers/api after signing up.
MCP (Model Context Protocol) is an open standard by Anthropic that lets AI assistants like Claude use external tools. The ChilledSites MCP server gives Claude Desktop and Claude Code direct access to website generation, editing, deployment, and media creation tools.
Yes. The agent self-registration endpoint lets AI agents create their own account and receive API credentials instantly, no human intervention required. The agent provides an email and receives an API key in the response.
The API is rate-limited to 10 requests per minute per API key. Website generation typically takes 30-90 seconds per request. If you need higher limits for bulk generation, contact support.
You need tokens in your account. Buy a token pack (from £8) or subscribe to a plan (Pro £9/month, Pro+ £18/month). There is no free tier, every API call consumes tokens.
Yes. Use the deploy_website tool or API endpoint to deploy any generated site. Sites deploy to a chilledsites.com subdomain by default. Custom domains can be configured through the dashboard after deployment.

Start building with the API

Get your API key and generate your first website in under a minute.

Get API Keys