getWorkByDOI
Retrieve detailed metadata for a scientific paper using its DOI. This tool queries the Crossref API to provide structured information about academic publications.
Instructions
Retrieve a specific scientific paper by its DOI
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doi | Yes | The DOI to look up |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"doi": {
"description": "The DOI to look up",
"type": "string"
}
},
"required": [
"doi"
],
"type": "object"
}