Codebase search
In the product: open codefundi.app/search . API: POST /v2/search with chat: false. Plan costs are on Credits and tiers.
Do not just grep strings. Query patterns, logic, and implementations across your indexed library (or hundreds of public codebases) with sub-second semantic retrieval for engineers and agents.
What you can search
- Semantic search (
scan_mode: semantic): natural-language questions; embeddings match paraphrases. - Documentation-aware grep (
grep_docs): scans generated summaries and documentation text. - Code grep (
grep_code): scans source text (exact identifiers, error strings, APIs).
Narrow results with filters: file extensions, path prefixes, dependencies, function names, size bounds, and visibility.
How to use it in the web app
Open Search
Go to Search (/search) and sign in.
Choose scope and mode
Pick indexed repos (or leave open for broader public search), then choose semantic vs grep. Optionally set filters for paths, dependencies, or functions.
Run the query
Submit a natural-language or exact query. Ranked hits show file path, similarity, and documentation snippets you can open in the repo view.
Same capability via API
Use POST /v2/search with chat: false. Request type: SearchRequest. Response: SearchResponse with SearchResult[]. Full schema and examples: V2 Search.