# Research Papers Scraper: Citations, Authors & Experts (`scrapemint/research-papers-scraper`) Actor

Search 250M+ academic papers across every field: titles, abstracts, citation counts, journals, open-access PDF links. Find the top experts on any topic, look up researchers by name with ORCID, h-index and affiliations, or enrich DOI lists. No API key, no login.

- **URL**: https://apify.com/scrapemint/research-papers-scraper.md
- **Developed by:** [Ken M](https://apify.com/scrapemint) (community)
- **Categories:** Education, Business
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$3.00 / 1,000 research rows

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Research Papers Scraper: Citations, Authors & Experts

Search over 250 million academic papers across every field of research - no API key, no login, no library subscription. Built on [OpenAlex](https://openalex.org), the open catalog of the world's research, which this actor gratefully credits as its data source.

### Four things it does

**1. Search papers by topic.** One row per paper: title, abstract, publication date, journal, authors with first-author institutions, citation count, field-weighted citation impact, and a direct PDF link when a free version exists. Sort by best match, most cited, or newest; filter by year range, minimum citations, and open access.

**2. Find the top experts on any topic.** Give it "crispr gene editing" and get the most-published researchers on that topic, ranked, each with ORCID, h-index, total citations and current institutions. An instant expert lead list for consulting, speaking, peer review, due diligence or journalism.

**3. Look up researchers by name.** ORCID, h-index, paper and citation counts, institutional affiliations - with multiple matches returned for ambiguous names.

**4. Enrich DOI lists.** Paste DOIs and get the full record for each, including citation counts and open-access links.

### Example input

```json
{
    "queries": ["large language models"],
    "maxPerQuery": 15,
    "sortBy": "citations"
}
```

### Who uses this

- **R\&D and competitive intelligence teams**: track what is being published in your field and by whom.
- **Recruiters, event organizers and expert networks**: the expert-finder mode is a ready-made lead list with credentials attached.
- **Journalists and analysts**: find the right person to quote and verify their standing.
- **Libraries, EdTech and research tools**: enrich reference lists at a fraction of commercial database prices.
- **Grant writers and academics**: literature scans sorted by citations, with abstracts, in structured JSON.

### Pricing

A small fee per row. Searches that match nothing, unknown DOIs and unmatched names are free note rows, and the first 2 rows of every run are free.

### Notes

- Data source: OpenAlex (CC0). Coverage is excellent for journal articles across all disciplines; abstracts are present for most recent papers but not all older ones.
- Author name search matches names, not topics - use the expert finder for topic-based discovery.
- Citation counts reflect OpenAlex's index and can differ slightly from Google Scholar (which counts more gray literature).

# Actor input Schema

## `queries` (type: `array`):

Topics or keywords to search papers for, one per line ("large language models", "mRNA vaccine stability"). Each returns matching papers with abstracts and citation counts.

## `maxPerQuery` (type: `integer`):

How many papers to return for each search.

## `sortBy` (type: `string`):

Order of paper results: best match, most cited first, or newest first.

## `yearFrom` (type: `integer`):

Only papers published in or after this year. 0 = no limit.

## `yearTo` (type: `integer`):

Only papers published in or before this year. 0 = no limit.

## `minCitations` (type: `integer`):

Only papers cited at least this many times. 0 = no limit.

## `openAccessOnly` (type: `boolean`):

Only papers with a free-to-read version (most rows then include a direct PDF link).

## `expertQueries` (type: `array`):

Topics to find the leading researchers for, one per line ("crispr gene editing"). Returns the most-published authors on that topic with ORCID, h-index and current institutions - an expert lead list.

## `maxExpertsPerQuery` (type: `integer`):

How many top authors to return per expert topic.

## `authorNames` (type: `array`):

Researcher names to look up, one per line ("Jennifer Doudna"). Returns their profile: ORCID, h-index, paper and citation counts, institutions.

## `maxAuthorsPerName` (type: `integer`):

Names can be ambiguous; return up to this many best matches per name.

## `dois` (type: `array`):

DOIs to enrich, one per line ("10.1038/s41586-021-03819-2" or full doi.org URLs). Each returns the full paper record.

## `maxRows` (type: `integer`):

Stop after this many rows in total.

## Actor input object example

```json
{
  "queries": [
    "large language models"
  ],
  "maxPerQuery": 15,
  "sortBy": "relevance",
  "yearFrom": 0,
  "yearTo": 0,
  "minCitations": 0,
  "openAccessOnly": false,
  "maxExpertsPerQuery": 10,
  "maxAuthorsPerName": 3,
  "maxRows": 1000
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "queries": [
        "large language models"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapemint/research-papers-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "queries": ["large language models"] }

# Run the Actor and wait for it to finish
run = client.actor("scrapemint/research-papers-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "queries": [
    "large language models"
  ]
}' |
apify call scrapemint/research-papers-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,scrapemint/research-papers-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/qeFPY0EdsdIOqY6Fj/builds/gtzq7fHhY19tpDRpe/openapi.json
