Skip to content
Eden Engine

Paper Citation & Reference Lookup (by DOI, arXiv ID, or PMID)

omnial/paper-details

Given a paper's DOI, arXiv id, OpenAlex id, or PMID, returns its full metadata (title, abstract, authors, venue, publication year, and field-of-study tags), its citation counts, its reference list (the works it cites), and its recent citing works (who has cited it since) -- for building a bibliography or checking a paper's citation impact in one call. An id or DOI that does not resolve to a known paper returns an error instead of an empty result.

activeper callv1
Provider
Web & Business Data Network
Category
research
Provider price
$0.045045 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, or PMID"
    },
    "doi": {
      "type": "string",
      "description": "alias for id (DOI form)"
    },
    "ref_limit": {
      "type": "string",
      "default": "25",
      "description": "max references (0-100)"
    },
    "cite_limit": {
      "type": "string",
      "default": "25",
      "description": "max citing works (0-100)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Present instead of `count`/`items` when the id/DOI does not resolve to a known paper. Observed as the literal string 'HTTP_400' on the one such fixture captured."
    },
    "count": {
      "type": "number",
      "description": "Number of entries in `items`; 1 on the successful fixture observed."
    },
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "doi": {
            "type": [
              "string",
              "null"
            ],
            "description": "The paper's own DOI. Observed null on the one real fixture captured (an arXiv preprint with no assigned DOI) -- not every paper has one."
          },
          "tldr": {
            "type": "string",
            "description": "A short, auto-generated one-sentence summary."
          },
          "type": {
            "type": "string",
            "description": "Observed as the literal string 'paper_details'."
          },
          "year": {
            "type": "number"
          },
          "title": {
            "type": "string"
          },
          "venue": {
            "type": "string"
          },
          "source": {
            "type": "string",
            "description": "Which citation-graph source resolved this record, e.g. 'arxiv'."
          },
          "authors": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Author names as published on the paper."
          },
          "citedBy": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "doi": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Every real entry observed carries a DOI, but the field is declared nullable to match `references[].doi`'s confirmed behavior rather than assume this list is always fully populated."
                },
                "year": {
                  "type": "number"
                },
                "title": {
                  "type": "string"
                },
                "citedByCount": {
                  "type": "number"
                }
              },
              "additionalProperties": true
            },
            "description": "Recent works that cite this paper, capped by the `cite_limit` input."
          },
          "abstract": {
            "type": "string"
          },
          "published": {
            "type": "string",
            "description": "Publication date-time string, e.g. '2017-06-12T17:57:34Z'."
          },
          "openAlexId": {
            "type": [
              "string",
              "null"
            ],
            "description": "Observed null on the one real fixture captured."
          },
          "references": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "doi": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "Null for several real entries observed -- not every cited work has a DOI on file."
                },
                "year": {
                  "type": "number"
                },
                "title": {
                  "type": "string"
                },
                "citedByCount": {
                  "type": "number"
                }
              },
              "additionalProperties": true
            },
            "description": "The works this paper cites, capped by the `ref_limit` input."
          },
          "citedByCount": {
            "type": [
              "number",
              "null"
            ],
            "description": "Observed null on the one real fixture captured."
          },
          "citationCount": {
            "type": [
              "number",
              "null"
            ],
            "description": "Observed null on the one real fixture captured; unconfirmed whether this ever differs from `citedByCount` when populated."
          },
          "fieldsOfStudy": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "referenceCount": {
            "type": "number"
          },
          "citationGraphSource": {
            "type": "string",
            "description": "Which upstream citation graph supplied citation counts, e.g. 'semanticscholar'."
          },
          "influentialCitationCount": {
            "type": "number"
          }
        },
        "additionalProperties": true
      }
    },
    "message": {
      "type": "string",
      "description": "Human-readable error text accompanying `code`."
    }
  },
  "description": "The paper lookup result, as returned at routing.responseResultPath ($.output). A successful lookup returns `count`/`items`; an id or DOI that does not resolve returns `code`/`message` instead (see examples/unknown-id-empty.json) -- no field below is guaranteed present on every call.",
  "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.045045
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