Skip to main content
GET
/
api
/
research
/
v1
/
list-arxiv-papers
ListArxivPapers
curl --request GET \
  --url https://api.example.com/api/research/v1/list-arxiv-papers
{
  "papers": [
    {
      "id": "<string>",
      "title": "<string>",
      "summary": "<string>",
      "authors": [
        "<string>"
      ],
      "categories": [
        "<string>"
      ],
      "publishedAt": 123,
      "url": "<string>"
    }
  ],
  "pagination": {
    "nextCursor": "<string>",
    "totalCount": 123
  }
}

Query Parameters

page_size
integer<int32>

Maximum items per page (1-100).

cursor
string

Cursor for next page.

category
string

arXiv category filter (e.g., "cs.AI"). Empty returns all tracked categories.

query
string

Search query for paper titles and abstracts.

Response

Successful response

ListArxivPapersResponse contains arXiv papers matching the request.

papers
object[]
pagination
object

PaginationResponse contains pagination metadata returned alongside list results.