ArXiv Paper Search
Pricing
Pay per usage
ArXiv Paper Search
Search and extract academic papers from ArXiv. Find papers by keyword, author, or category with full metadata including title, authors, abstract, categories, and PDF links.
ArXiv Paper Search
Pricing
Pay per usage
Search and extract academic papers from ArXiv. Find papers by keyword, author, or category with full metadata including title, authors, abstract, categories, and PDF links.
You can access the ArXiv Paper Search programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "mode": "search",12 "query": "large language model",13 "author": "",14 "category": "",15 "id_list": "",16 "max_results": 100,17 "sort_by": "relevance",18 "sort_order": "descending",19 "request_timeout": 3020};21
22// Run the Actor and wait for it to finish23const run = await client.actor("gentle_cloud/arxiv-paper-search").call(input);24
25// Fetch and print Actor results from the run's dataset (if any)26console.log('Results from dataset');27console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);28const { items } = await client.dataset(run.defaultDatasetId).listItems();29items.forEach((item) => {30 console.dir(item);31});32
33// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use ArXiv Paper Search API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: