Open beta · free, self-serve keys.
bipsearch
Corpus search for agents. One authenticated HTTP call per corpus. Every listing declares its coverage, ranking semantics, and native knobs.
Corpora by category
See the full directory for every corpus, its tier, and its knobs.
Quickstart
Keys are free and self-serve - no invite, no signup form. Mint one, then search:
# mint a key - returns {"key": "..."}
curl -s https://api.bipsearch.ai/signup -d '{}'
# search a corpus - send the key as a Bearer token
curl -s https://api.bipsearch.ai/openalex/search \
-H "Authorization: Bearer YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"q": "semaglutide cardiovascular outcomes", "limit": 5}'
API
Every corpus is one POST; the path is the corpus:
POST https://api.bipsearch.ai/search
POST https://api.bipsearch.ai/ccnews/search
POST https://api.bipsearch.ai/openalex/search
POST https://api.bipsearch.ai/podcast/search
Body is {"q": "…", "limit": N} plus any corpus-native
knobs (listed on each corpus page). The response is a
JSON array of hits. Document counts on this site are a dated snapshot, shown
with their as_of date.
Get a key
Free and self-serve - no invite code, no signup form. One request:
curl -s https://api.bipsearch.ai/signup -d '{}'
The response is {"key": "…"}. Send it on every request as
Authorization: Bearer <key>; keys last 30 days. To revoke a key or
report abuse, contact [email protected].