Skip to main content
Expert-curated knowledge graphs for grounded RAG — PSFK domain trends, expert specialist graphs, industry reports, and institutional market data (US Census, FRED, BLS, BEA, OpenAlex, Google Trends). Every trend ships pre-bundled with evidence tagged by type (case study / statistic / analysis / interview) so agents can cite sources instead of paraphrasing them. Use when defensibility matters: board-ready briefs, competitive intel, strategy memos — not open-web Q&A. 7 endpoints available through Lava’s AI Gateway. See the Fodda API docs for full documentation.
Supports both managed (Lava’s API keys) and unmanaged (bring your own credentials) mode.

Endpoints

List every available knowledge graph with graph_id, domain, curator, and example_queries. Free (0 tokens). Call first to discover valid graph_ids for other endpoints.

GET https://api.fodda.ai/v1/graphs — Free
const data = await lava.gateway('https://api.fodda.ai/v1/graphs', { method: 'GET' });
POST https://api.fodda.ai/v1/search/domain — $0.0014 / request
const data = await lava.gateway('https://api.fodda.ai/v1/search/domain', {
  body: {
"query": "sustainable packaging trends",
"limit": 10,
"include_evidence": true,
"max_evidence_per_trend": 5,
"min_score": 0.6
},
});

Search expert specialist graphs authored by individual strategists (Ben Dietz, Juan Isaza, etc.). Same request shape as /v1/search/domain — fires against expert graphs automatically.

POST https://api.fodda.ai/v1/search/expert — $0.0014 / request
const data = await lava.gateway('https://api.fodda.ai/v1/search/expert', {
  body: {
"query": "sustainable packaging trends",
"limit": 10,
"include_evidence": true,
"min_score": 0.6
},
});

Search industry report graphs (Deloitte, WEF, Mintel, PwC, 60+ others). Same request shape as /v1/search/domain. Use alongside /search/domain and /search/expert for full topic-research coverage.

POST https://api.fodda.ai/v1/search/report — $0.0014 / request
const data = await lava.gateway('https://api.fodda.ai/v1/search/report', {
  body: {
"query": "sustainable packaging trends",
"limit": 10,
"include_evidence": true,
"min_score": 0.6
},
});
POST https://api.fodda.ai/v1/supplemental/context — $0.0014 / request
const data = await lava.gateway('https://api.fodda.ai/v1/supplemental/context', {
  body: {
"query": "sustainable packaging trends",
"domain": "retail",
"brands": [
  "Loop",
  "TerraCycle"
]
},
});
POST https://api.fodda.ai/v1/brand-intelligence/Patagonia?maxEvidence=10&limit=50 — $0.0014 / request
const data = await lava.gateway('https://api.fodda.ai/v1/brand-intelligence/Patagonia?maxEvidence=10&limit=50', { method: 'POST' });
POST https://api.fodda.ai/v1/graphs/retail/neighbors — $0.0014 / request
const data = await lava.gateway('https://api.fodda.ai/v1/graphs/retail/neighbors', { body: {"seed_node_ids":["6445"],"depth":2,"limit":30} });

Next Steps

All Providers

Browse all supported AI providers

Forward Proxy

Learn how to construct proxy URLs and authenticate requests