K

krawl.sh

Krawl is a deep research agent API that produces 50+ source reports in 90 seconds with full citations, searching the web, X/Twitter, GitHub, academic papers, and crypto/DeFi in parallel. Drop it into Claude Code, OpenClaw, Hermes, or any runtime via API, MCP, or skill.md.

3read
https://krawl.sh/

live · AI Agents & Fintech · JSON · API for agents

Tools 3 tools

researchread

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.

View tool JSON
{
  "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": "/"
}
quick_searchread

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.

View tool JSON
{
  "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_krawlread

Ask a natural-language question about Krawl's research capabilities and get a routed answer pointing to the right tool or endpoint.

View tool JSON
{
  "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": "/"
}