Skip to main content
POST
/
api
/
arxiv
/
papers
/
search
/arxiv/papers/search
curl --request POST \
  --url https://api.anysite.io/api/arxiv/papers/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "title": "<string>",
    "@type": "@arxiv_paper",
    "version": 123,
    "abstract": "<string>",
    "authors": [],
    "published_at": "",
    "updated_at": "",
    "doi": "<string>",
    "primary_category": "<string>",
    "categories": [],
    "comment": "<string>",
    "journal_ref": "<string>",
    "pdf_url": "<string>",
    "web_url": ""
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query (arXiv search syntax, e.g. 'all:transformer', 'au:hinton', 'cat:cs.LG')

Minimum string length: 1
Examples:

"transformer"

"au:hinton"

"cat:cs.LG AND all:diffusion"

count
integer
required

Number of papers to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
title
string
required
@type
string
default:@arxiv_paper
version
integer | null
abstract
string | null
authors
ArxivAuthor · object[]
published_at
string
default:""
updated_at
string
default:""
doi
string | null
primary_category
string | null
categories
string[]
comment
string | null
journal_ref
string | null
pdf_url
string | null
web_url
string
default:""