Site Generator

Send your Google Business data as JSON. Get a hosted website URL back instantly.

Try It

Paste your business JSON or fill in the name to generate a site.

How It Works

1

Send JSON

POST your Google Business data to /api/generate

2

We Build It

A responsive website is generated instantly with your data

3

Get a URL

You get a hosted URL you can share or embed anywhere

API Reference

// POST /api/generate curl -X POST https://untitled-1775148515411-x1q5.polsia.app/api/generate \ -H "Content-Type: application/json" \ -d '{ "business_name": "Joe's Pizza", "address": "123 Main St, New York, NY", "phone": "(212) 555-0100", "category": "Pizza Restaurant", "rating": 4.7, "review_count": 342, "hours": [ { "day": "Mon-Fri", "hours": "11am - 10pm" }, { "day": "Sat-Sun", "hours": "12pm - 11pm" } ], "reviews": [ { "author": "Sarah M.", "rating": 5, "text": "Best pizza in the city!" } ], "photos": [ "https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=600" ] }' // Response: { "success": true, "site": { "id": 1, "slug": "joes-pizza", "url": "https://untitled-1775148515411-x1q5.polsia.app/sites/joes-pizza", "created_at": "2026-04-02T..." } }