OpenWebSearch

spacefrontiers_fetch_document

Retrieve the full text, metadata, and references of one Space Frontiers document. Use when: you have a `source_uri` from a search hit and need the body to quote, summarize, or extract structured facts; or you want to walk the citation graph via `references` and `referenced_by`. Do not use when: you have not yet found the document — call a `spacefrontiers_search_*` tool first to obtain a real `source_uri`. Do not guess DOIs. Returns title, authors, abstract, content (truncated above ~100K chars), references with URIs, and up to 30 `referenced_by` documents you can fetch next. For documents over ~20K tokens prefer `spacefrontiers_search_in_document` to extract only the passages you need. Examples: `https://doi.org/10.1038/s41586-023-06924-6`, `arxiv:2301.00001`, `pmid:38019072`.

Remote spacefrontiers/search

Other tools also called spacefrontiers_fetch_document? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "uri": {
      "type": "string",
      "examples": [
        "https://doi.org/10.1038/s41586-023-06924-6",
        "arxiv:2301.00001",
        "pmid:38019072",
        "isbn:9780262033848"
      ],
      "description": "Canonical URI of the document to fetch. Copy verbatim from a `source_uri` field in a previous search result, or supply a known identifier in one of these schemes: `doi:10.…`, `https://doi.org/10.…`, `arxiv:2301.00001`, `pmid:12345678`, `isbn:9780262033848`. Do NOT compose or guess URIs."
    }
  }
}