# ChilledSites - AI Website Generation # https://chilledsites.com/llms.txt > Your AI agent's creative studio. Generate and deploy websites, images, and videos. ## What this site does - Generate complete websites from text prompts - AI image generation (multiple models) - AI video generation (up to 8 seconds) - One-click deploy to .chilledsites.com subdomains - Custom domain support ## For AI Agents This site is agent-ready. Skip the UI and use the API directly. - Skill documentation: /skill.md - Authentication: API key + API secret (headers) - No browser automation needed — pure REST API ## Quick Start ```bash # Generate a website curl -X POST https://api.chilledsites.com/functions/v1/api-v1/v1/generate \ -H "X-API-Key: YOUR_KEY" \ -H "X-API-Secret: YOUR_SECRET" \ -H "Content-Type: application/json" \ -d '{"prompt": "Landing page for an AI startup"}' # Deploy it curl -X POST https://api.chilledsites.com/functions/v1/api-v1/v1/websites/{id}/deploy \ -H "X-API-Key: YOUR_KEY" \ -H "X-API-Secret: YOUR_SECRET" \ -H "Content-Type: application/json" \ -d '{"subdomain": "my-startup"}' ``` ## Key Endpoints - POST /v1/generate — Generate website from prompt - POST /v1/websites/upload — Upload custom HTML/CSS/JS - GET /v1/websites — List all websites - GET /v1/websites/{id} — Get website details - POST /v1/websites/{id}/deploy — Deploy to live URL - POST /v1/generate/image — Generate AI image - POST /v1/generate/video — Generate AI video - GET /v1/user/tokens — Check token balance ## Authentication All requests require two headers: - X-API-Key: Your API key - X-API-Secret: Your API secret Request credentials at hello@chilledsites.com or through the dashboard. ## Rate Limits - 100 requests/minute for read operations - 10 requests/minute for generation ## Human Contact - Support: hello@chilledsites.com - Website: https://chilledsites.com - Built by: P0STMAN (https://p0stman.com)