cURL
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 } }
ListArxivPapers retrieves recent papers from arXiv.
Maximum items per page (1-100).
Cursor for next page.
arXiv category filter (e.g., "cs.AI"). Empty returns all tracked categories.
Search query for paper titles and abstracts.
Successful response
ListArxivPapersResponse contains arXiv papers matching the request.
Show child attributes
PaginationResponse contains pagination metadata returned alongside list results.
Was this page helpful?