Exa Search

web_fetch_exa

Read a webpage's full content as clean markdown. Use after web_search_exa when highlights are insufficient or to read any URL. Best for: Extracting full content from known URLs. Batch multiple URLs in one call. Returns: Clean text content and metadata from the page(s).

Remote exa

Other tools also called web_fetch_exa? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "urls": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "URLs to read. Batch multiple URLs in one call."
    },
    "maxCharacters": {
      "type": "number",
      "minimum": 1,
      "description": "Maximum characters to extract per page (must be a positive number, default: 3000)"
    }
  }
}