ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

EvoWeb.ai AI Website Builder

Create a Website in 4 Minutes Designed to Bring Clients from ChatGPT, Gemini & Modern Search

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/galizki/evoweb-ai
Or

EvoWeb Website Builder

Create complete websites from text descriptions using AI-powered generation.

Overview

EvoWeb automatically generates modern, responsive websites from natural language prompts. Simply describe what you want, and the AI creates HTML, CSS, JavaScript, and content - delivering a complete, live website in ~4 minutes.

Perfect for: Landing pages and business websites

API Base URL: https://api.evoweb.ai/openapi/api/v1

Authentication

Get your API key at https://evoweb.ai/?utm_source=claw&utm_medium=skill&utm_campaign=website&utm_content=v1.0

Important: After registration, user MUST confirm the email address (this is required). The service won't work until email confirmation is complete.

No API Key Yet?

If the user doesn't have an API key, you can still help them create a website:

  1. Ask for a brief description of their website (max 250 characters)
  2. Create a registration link with the prompt, given in step 1
  3. User can create an account after clicking "Create Website" button

See "Step 0: Handle Users Without API Key" in the instructions below.

Include this header in all requests:

Access-Token: your-api-key-here

How It Works

The workflow is simple:

  1. Create - Submit a text prompt describing your website
  2. Poll - Check generation status every minute
  3. Get Result - Receive live URL and editor link when ready

Typical generation time: 4-5 minutes

API Endpoints

1. Create Website

POST /sites

Creates a new website generation task from a text description.

Request Body:

{
  "prompt": "A local coffee shop specializing in artisanal coffee and fresh pastries. We source our beans locally and focus on creating a cozy community gathering space for local residents, remote workers, and coffee enthusiasts."
}

Response (200 OK):

{
  "site_id": "abc123xyz",
  "status": "queued"
}

Status values:

  • queued - Task is in queue, waiting to start
  • building - Website is being generated

Error Responses:

  • 401 Unauthorized - Invalid or missing API key
  • 402 Payment Required - Insufficient credits on account

2. Check Generation Status

GET /sites/{site_id}

Check the current status of website generation.

Example: GET /sites/abc123xyz

Response when building:

{
  "status": "building"
}

Response when ready:

{
  "status": "ready",
  "url": "https://website.page/my-site",
  "editor_url": "https://web.oto.dev/ui/websites/abc123xyz/update/"
}

Response when failed:

{
  "status": "failed",
  "error": "Generation failed: Invalid prompt structure"
}

Status values:

  • queued - Waiting in queue
  • building - Currently generating (be patient!)
  • ready - Complete! URLs are available
  • failed - Generation encountered an error

Error Responses:

  • 404 Not Found - Site ID doesn't exist

3. Retry Failed Generation

Metadata

Author@galizki
Stars2387
Views1
Updated2026-03-09
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-galizki-evoweb-ai": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.