Przypadki użycia
Build on the Knowledge API
AI Knowledge Assistant
User Question → API Entity → Evidence → Answer
// ask "what is ethereum" -> resolve to entity
const d = await fetch('/api/entity/ethereum?fields=summary,evidence').then(r => r.json());
// answer = d.summary, grounded in d.evidence[].sourcesResearch Dashboard
Entity → Score → Relations → Compare
const d = await fetch('/api/entity/defi?fields=score,relations,compare').then(r => r.json());
// score.authority_score, relations.outgoing, compare[].slugLearning Platform
Authority → Path → FAQ
const d = await fetch('/api/entity/blockchain?fields=faq,relations').then(r => r.json());
// faq[] as Q&A, relations as next-steps