related_works_of_paper
Find academic papers related to a specific research work using OpenAlex API to explore connected literature and expand research context.
Instructions
Gets related works used to 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 related to 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"
}