get_paper_batch
Retrieve detailed information for multiple academic papers in one request using a comma-separated list of paper IDs and specified fields.
Instructions
Get information for multiple papers in a single request.
Args:
paper_ids: Comma-separated list of paper IDs
fields: Comma-separated list of fields to return
Returns:
Batch paper information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | ||
paper_ids | Yes |
Input Schema (JSON Schema)
{
"properties": {
"fields": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Fields"
},
"paper_ids": {
"title": "Paper Ids",
"type": "string"
}
},
"required": [
"paper_ids"
],
"title": "get_paper_batchArguments",
"type": "object"
}