search_by_category
Retrieve academic papers from arXiv by specifying a category, sorting options, and pagination parameters. Supports filtering by relevance, submission, or update date.
Instructions
Search for papers in a specific arXiv category
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | arXiv category (e.g., cs.AI, physics.optics) | |
max_results | No | Maximum number of results to return (max 2000) | |
sort_by | No | Sort by: relevance, lastUpdatedDate, submittedDate | |
sort_order | No | Sort order: ascending or descending | |
start | No | Starting index for pagination (0-based) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "arXiv category (e.g., cs.AI, physics.optics)",
"type": "string"
},
"max_results": {
"description": "Maximum number of results to return (max 2000)",
"type": "number"
},
"sort_by": {
"description": "Sort by: relevance, lastUpdatedDate, submittedDate",
"enum": [
"relevance",
"lastUpdatedDate",
"submittedDate"
],
"type": "string"
},
"sort_order": {
"description": "Sort order: ascending or descending",
"enum": [
"ascending",
"descending"
],
"type": "string"
},
"start": {
"description": "Starting index for pagination (0-based)",
"type": "number"
}
},
"required": [
"category"
],
"type": "object"
}