Skip to content
Eden Engine

Paper Full Text Retrieval (by arXiv ID, DOI, PMID, or PMCID)

omnial/paper-fulltext

Given a paper's arXiv id, DOI, OpenAlex id, PMID, or PMCID, returns its full text split into sections (e.g. introduction, methods, results), the concatenated plain-text body, and which open-access source served it (arXiv's ar5iv mirror, Europe PMC for biomedical papers, or an OpenAlex-located open-access copy for others) along with whether the paper was actually open access. A paper that cannot be matched to any of those identifier types returns an error code and message instead of paper data.

activeper callv1
Provider
Web & Business Data Network
Category
research
Provider price
$0.06006 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "anyOf": [
    {
      "required": [
        "id"
      ]
    },
    {
      "required": [
        "doi"
      ]
    }
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "arXiv id, DOI, OpenAlex id, PMID, or PMCID"
    },
    "doi": {
      "type": "string",
      "description": "alias for id (DOI form)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Present only on the error case observed instead of `count`/`items` -- 'HTTP_400' on the one fixture captured (a bogus/unmatched DOI). Other values are not confirmed."
    },
    "count": {
      "type": "number",
      "description": "Number of entries in `items`; 1 on the success fixture observed."
    },
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "text": {
            "type": "string",
            "description": "The full paper body as a single concatenated plain-text string."
          },
          "type": {
            "type": "string",
            "description": "Observed as the literal string 'paper_fulltext' on the fixture captured."
          },
          "query": {
            "type": "string",
            "description": "Echoes the requested `id`/`doi` input value."
          },
          "arxivId": {
            "type": "string",
            "description": "The arXiv identifier for the paper, present on the one fixture captured (an arXiv paper). Whether an equivalent id field is present for a DOI/PMID/PMCID lookup routed to Europe PMC or OpenAlex instead of arXiv is unconfirmed -- only the arXiv path was exercised in calibration."
          },
          "sections": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "text": {
                  "type": "string"
                },
                "heading": {
                  "type": "string"
                }
              },
              "additionalProperties": true
            },
            "description": "The paper's body split into named sections, in document order."
          },
          "openAccess": {
            "type": "boolean"
          },
          "fulltextSource": {
            "type": "string",
            "description": "Which upstream source served the full text. Observed as 'ar5iv' on the one fixture captured (an arXiv paper); the vendor's own documentation additionally names Europe PMC for biomedical identifiers and OpenAlex-located open-access copies for others, but neither was exercised in calibration."
          }
        },
        "additionalProperties": true
      },
      "description": "Present on a successful lookup; absent on the error case (see `code`/`message`)."
    },
    "message": {
      "type": "string",
      "description": "Present only on the error case, alongside `code`; a short human-readable reason."
    }
  },
  "description": "The paper lookup result, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.06006
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026