t
TasteOS
/api/public/v1
Surface · sample consumer

CultureGraph

A demo app that talks only to /api/public/v1/recommend. Same engine, same scores — rendered as a culture feed instead of an admin table.

Engine working…
How CultureGraph uses the API
// CultureGraph.tsx — one call, no engine code of its own
const res = await fetch("/api/public/v1/recommend", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    profile_id: "…",
    domain: "culture",
    limit: 6,
  }),
});
const { recommendations } = await res.json();