Skip to main content
The UI layer for AI agents. Create shareable artifacts with a single API call.

What is genui.sh?

genui.sh provides a simple API for AI agents and applications to create beautiful, shareable UI artifacts. Instead of building custom frontends, you can:
  • Create artifacts from structured data using pre-built templates
  • Share instantly with signed URLs that work anywhere
  • Support multiple formats including Markdown, charts, tables, and PDFs

Key Features

Multiple Templates

Markdown, charts, tables, PDFs, and more

Instant Sharing

Generate secure share URLs in one call

Agent-Friendly

Designed for AI agent workflows

Quick Example

curl -X POST https://genui.sh/api/artifacts/share \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "template": "markdown",
    "title": "Hello World",
    "content": {"text": "# Welcome\n\nYour first artifact!"}
  }'
Response:
{
  "id": "art_abc123",
  "url": "https://genui.sh/a/art_abc123?token=xyz...",
  "expiresAt": "2024-01-22T12:00:00Z"
}
Ready to get started? Head to the Quickstart guide.