cURL
curl --request GET \ --url https://genui.sh/api/artifacts
{ "data": [ { "id": "art_abc123", "template": "markdown", "title": "My Document", "status": "active", "createdAt": "2024-01-15T12:00:00Z" }, { "id": "art_def456", "template": "chart", "title": "Sales Report", "status": "active", "createdAt": "2024-01-14T10:00:00Z" } ], "pagination": { "total": 42, "limit": 20, "offset": 0, "hasMore": true } }
markdown
chart
table
pdf
active
expired
deleted
createdAt
-createdAt
total
limit
offset
hasMore
curl -X GET "https://genui.sh/api/artifacts?limit=10&template=markdown" \ -H "Authorization: Bearer $GENUI_API_KEY"