Experience Catalog
List published experiences in a project for creator-managed galleries.
Overview
Use the catalog API when your app should automatically reflect experiences created and ordered
in Studio. Fetch the catalog server-side with your API key, link by slug, and mint
sessions with the returned experienceId.
GET /v1/projects/{projectId}/experiences
Returns published experiences in creator-defined order.
GET https://api.liforma.ai/v1/projects/proj_01ABC/experiences
Authorization: Bearer YOUR_API_KEY Response 200
{
"experiences": [
{
"experienceId": "exp_01K3Q9M5WJQ2P9X7B4R8S1N6D",
"slug": "spanish-tutor",
"title": "Spanish Tutor Sofia",
"sortOrder": 10,
"updatedAt": "2026-07-26T12:00:00.000Z",
"catalogReady": true,
"avatarId": "05a87620",
"thumbnailPath": "https://cdn.liforma.ai/avatars/05a87620/512/05a87620_CH.webp",
"galleryThumb": {
"avatarImage": "https://cdn.liforma.ai/avatars/05a87620/512/05a87620_CH.webp"
},
"discoveryTags": []
}
]
} GET /v1/projects/{projectId}/experiences/{slug}
Lookup one published experience by project-scoped slug.
GET https://api.liforma.ai/v1/projects/proj_01ABC/experiences/spanish-tutor
Authorization: Bearer YOUR_API_KEY Rules
- Only
status: publishedexperiences are returned. catalogReady: falsemeans the experience is published but missing gallery fields in Studio; routing metadata is still returned.slugis unique within a project, not globally.- Session mint endpoints still require
experienceId. - Never expose your API key to the browser.