Academic Research & Citation Tracker avatar

Academic Research & Citation Tracker

Pricing

Pay per usage

Go to Apify Store
Academic Research & Citation Tracker

Academic Research & Citation Tracker

Searches academic databases (arXiv, PubMed, Crossref) for research papers matching keywords. Returns structured citation data including title, authors, journal, DOI, abstract, and URL.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Richard P

Richard P

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

An Apify Actor that searches multiple academic databases for research papers matching your keywords and returns structured citation data.

Features

  • Multi-source search — queries arXiv, PubMed, and Crossref simultaneously
  • Structured citation output — title, authors, journal, DOI, abstract, URL, published date
  • Concurrent searching — parallel queries across sources and keywords
  • Date filtering — optional date range to find only recent publications
  • Graceful abort — handles stop signals cleanly to minimize costs
  • Webhook notifications — optional POST callback when the run completes

Data Sources

SourceCoverage
arXivPreprints in physics, mathematics, computer science, and related fields
PubMedBiomedical literature from MEDLINE, life science journals, and online books
CrossrefScholarly publications across all disciplines (DOI registration agency)

Input Schema

FieldTypeRequiredDescription
keywordsarray[string]Research keywords or topics to search for
sourcesarray[string]Sources: arxiv, pubmed, crossref (default: all)
maxResultsintegerMax results per source per keyword (default: 20)
dateFromstringFilter: YYYY-MM-DD format date
webhookUrlstringURL for completion notification

Example Input

{
"keywords": ["machine learning", "transformer architecture"],
"sources": ["arxiv", "crossref"],
"maxResults": 10,
"dateFrom": "2024-01-01"
}

Dataset Output

Each result in the dataset has the following structure:

FieldTypeDescription
timestampstringISO 8601 retrieval timestamp
sourcestringSource database (arxiv, pubmed, crossref)
titlestringFull paper title
authorsarray[string]List of author names
journalstringJournal or conference name
publishedDatestringPublication date
doistringDigital Object Identifier
urlstringLink to the paper
abstractstringPaper abstract or summary

Local Development

Prerequisites

Setup

# Create virtual environment and install dependencies
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
# Run locally with test input
apify run --purge

Deploy

apify login
apify push

Use Cases

  • Literature review for research projects
  • Keeping up with recent publications in your field
  • Building a dataset of academic citations
  • Monitoring research output on specific topics
  • Automated citation tracking workflows

License

MIT