Agent Integration

Search and preview freely. Buy a 50-cent commercial license to export SVG, React, inline HTML, and the full paid-ready pack.

Buy 50-cent license

Discovery

GET /api/assets?q=passkey&limit=12
GET /.well-known/agents.json
GET /.well-known/ai-plugin.json
GET /.well-known/mcp.json
GET /mcp/manifest.json

Preview

GET /api/previews/review-auth-passkey-outline-01
GET /api/assets/review-auth-passkey-outline-01

Paid Export

GET /api/packs/founding-saas-ui-states-v1/export
x-agent-svg-license: lsv_live_...

Copy-paste fetch

const base = "https://agent-svg-registry.vercel.app";
const search = await fetch(`${base}/api/assets?q=model%20router&limit=3`).then(r => r.json());

// After buying a license at /buy/launch:
const pack = await fetch(`${base}/api/packs/founding-saas-ui-states-v1/export`, {
  headers: { "x-agent-svg-license": process.env.AGENT_SVG_LICENSE }
}).then(r => r.json());