Quick Start Guide

From zero to published website in 5 minutes

1 Create Your Account

Sign up at websitepublisher.ai. Verify your email address.

2 Create a Project

In your dashboard, click "New Project". You'll receive:

3 Give Instructions to Your AI

Copy this prompt and paste it to Claude, ChatGPT, or your preferred AI assistant:

📋 Copy This Prompt

I want you to build a website for me using WebsitePublisher.ai. My credentials: - Project ID: [PASTE YOUR PROJECT ID] - API Token: [PASTE YOUR API TOKEN] API Base URL: https://api.websitepublisher.ai Please create a simple website with: - Homepage (index.html) - About page (about.html) - Contact page (contact.html) Use modern, clean HTML with inline CSS. Start by checking my project status: GET /project/{project_id}/status Then create the pages using: POST /project/{project_id}/pages Documentation: https://websitepublisher.ai/llms.txt

4 Watch AI Build

Your AI assistant will:

  1. Verify the credentials work
  2. Design and create your pages
  3. Publish them instantly

You can guide the process by describing what you want, providing content, or asking for specific designs.

5 View Your Site

Your website is live at your subdomain! Visit it in your browser to see the result.

🚀 What's Next?

Example: What AI Might Create

When you give AI your credentials and ask for a website, it will make API calls like this:

# Check project status
curl -X GET "https://api.websitepublisher.ai/project/22253/status" \
  -H "Authorization: Bearer YOUR_TOKEN"
# Create homepage
curl -X POST "https://api.websitepublisher.ai/project/22253/pages" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "slug": "index.html",
    "content": "<!DOCTYPE html><html>...</html>",
    "meta": {"title": "Home"}
  }'