live · AI Agents & Fintech · JSON · API for agents
Run an autonomous deep-research agent over a topic and return a comprehensive markdown report with 50+ verified sources and inline citations. Searches the web, X/Twitter, GitHub, academic papers, and crypto/DeFi data in parallel, then synthesizes a cited answer.
{
"name": "research",
"kind": "read",
"impl": "imperative",
"description": "Run an autonomous deep-research agent over a topic and return a comprehensive markdown report with 50+ verified sources and inline citations. Searches the web, X/Twitter, GitHub, academic papers, and crypto/DeFi data in parallel, then synthesizes a cited answer.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The research question or topic to investigate.",
"minLength": 3
},
"mode": {
"type": "string",
"enum": [
"deep",
"quick",
"crypto"
],
"default": "deep",
"description": "deep = exhaustive multi-source search; quick = fast shallow answer; crypto = on-chain/DeFi-specialized research."
}
},
"required": [
"query"
]
},
"page": "/"
}Search a single source and return raw, structured results without synthesis. Faster and cheaper than `research`; use when you want links/snippets from one provider rather than a written report.
{
"name": "quick_search",
"kind": "read",
"impl": "imperative",
"description": "Search a single source and return raw, structured results without synthesis. Faster and cheaper than `research`; use when you want links/snippets from one provider rather than a written report.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The search query.",
"minLength": 2
},
"source": {
"type": "string",
"enum": [
"exa",
"x",
"github",
"crypto",
"web",
"academic"
],
"default": "exa",
"description": "Which source to search (exa=general web, x=Twitter, etc.)."
},
"num_results": {
"type": "integer",
"minimum": 1,
"maximum": 30,
"default": 8,
"description": "Max results to return."
}
},
"required": [
"query"
]
},
"page": "/"
}Ask a natural-language question about Krawl's research capabilities and get a routed answer pointing to the right tool or endpoint.
{
"name": "ask_krawl",
"kind": "read",
"impl": "imperative",
"description": "Ask a natural-language question about Krawl's research capabilities and get a routed answer pointing to the right tool or endpoint.",
"inputSchema": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "A natural-language question about what you want to research or how to use Krawl.",
"minLength": 2
}
},
"required": [
"query"
]
},
"page": "/"
}