Science
arXiv preprint search API
Search arXiv preprints (where new ML, physics, math, CS, and stats research appears first), sorted by relevance or recency. Returns title, abstract, authors, primary category, publish date, and URL — parsed from arXiv's Atom feed into clean JSON. Answers 'recent papers on diffusion models', 'latest arXiv on transformers', 'preprints about X', 'new research on Y'.
Price$0.01per request
MethodPOST
Route/v1/science/arxiv
StatusLive
MIME typeapplication/json
Rate limit30/minute
Cache3600s public
sciencearxivpreprintpapersresearchmachine-learningphysicsacademic
API URL
Integration docshttps://x402.hexl.dev/v1/science/arxivExample request
{
"query": "diffusion models",
"sort": "recent",
"limit": 1
}Example response
{
"query": "diffusion models",
"count": 1,
"papers": [
{
"title": "Score-Based Generative Modeling",
"summary": "We present a framework…",
"authors": [
"Yang Song"
],
"published": "2021-02-01T00:00:00Z",
"category": "cs.LG",
"url": "http://arxiv.org/abs/2011.13456v2"
}
]
}Input schema
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"examples": [
"diffusion models"
]
},
"limit": {
"type": "number",
"default": 10
},
"sort": {
"type": "string",
"enum": [
"relevance",
"recent"
],
"default": "relevance"
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}