Search and synthesize answers from knowledge vaults. Use the Discovery and Synthesis APIs to build AI applications with cited sources.
Sign up at the Developer Portal to generate your API key
Use /api/discovery for search or /api/synthesis for Q&A
Integrate verified knowledge into your AI applications
All API requests require authentication using a Bearer token in the Authorization header:
Get your API key from the Developer Portal.
Finds relevant books and papers that match your search query. Returns "Book Insight Cards" with AI-generated summaries.
{
"query": "What is zero knowledge proof?",
"filters": {
"author": "Vitalik Buterin",
"year_range": [2020, 2024]
},
"limit": 5
}// Discovery Search - use your deployment URL as base
const BASE_URL = 'https://api.infbr.com';
const searchBooks = async (query) => {
const response = await fetch(BASE_URL + '/api/discovery', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer bw_your_api_key'
},
body: JSON.stringify({ query, limit: 5 })
});
const data = await response.json();
return data.results;
};Join our Discord community for support, share your integration stories, and connect with other developers building with Infinibrary.