referenced_works_in_paper
Identify all referenced works cited in a specific academic paper using OpenAlex API data to support citation analysis and literature review.
Instructions
Gets referenced works used in the specified paper using the OpenAlex API. Note: May return empty if the paper's full text is inaccessible.
Args: paper_id: An OpenAlex Work ID of the target paper. e.g., "https://openalex.org/W123456789"
Returns: A JSON object containing a list of paper ids used in the work, or an error message if the fetch fails.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
paper_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"paper_id": {
"title": "Paper Id",
"type": "string"
}
},
"required": [
"paper_id"
],
"type": "object"
}