Crossref Publications API Scraper – DOI, Title & Citations avatar

Crossref Publications API Scraper – DOI, Title & Citations

Pricing

$1.00 / 1,000 publication record exporteds

Go to Apify Store
Crossref Publications API Scraper – DOI, Title & Citations

Crossref Publications API Scraper – DOI, Title & Citations

Exports structured publication records (DOI, title, authors, journal, citation counts, and more) from the official Crossref REST API.

Pricing

$1.00 / 1,000 publication record exporteds

Rating

0.0

(0)

Developer

Ahmed

Ahmed

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Exports structured publication records — DOI, title, authors, journal, volume/issue, ISSN/ISBN, and citation counts — from the official Crossref REST API. Built for researchers, librarians, bibliometricians, and AI/data teams who need clean scholarly metadata or citation datasets without writing their own Crossref API client.

Why this scraper

  • Reads Crossref's official JSON API directly rather than scraping rendered HTML pages, so every field Crossref publishes is captured in structured form, with no HTML parsing errors or layout-dependent guesswork.
  • Includes referenceCount and isReferencedByCount on every record, so citation-based analysis doesn't require a second lookup.
  • No personal or scraped-web data involved — output is limited to publication metadata that Crossref publishers already deposit publicly.

Output fields

FieldTypeDescription
doistringDOI identifier of the publication
titlestringTitle of the publication
typestringCrossref work type, e.g. journal-article, book-chapter, proceedings-article
publisherstringName of the publisher
containerTitlestringJournal, book, or series title containing the work
authorsstringSemicolon-separated list of author full names in order
publishedDatestringPublication date, YYYY, YYYY-MM, or YYYY-MM-DD
volumestringVolume number
issuestringIssue number
pagestringPage range, e.g. 60-70
issnstringComma-separated ISSN(s) of the containing journal
isbnstringComma-separated ISBN(s) of the work
referenceCountintegerNumber of references listed in the work
isReferencedByCountintegerNumber of times this work is cited according to Crossref
urlstringCanonical doi.org URL for the work
memberstringCrossref member ID of the depositing publisher

Input

{
"startUrls": [{ "url": "https://api.crossref.org/works?rows=50" }],
"maxItems": 50
}

You can point startUrls at any Crossref REST endpoint, such as works, journals, or members, with query parameters (filters, search terms, rows) included in the URL. maxItems caps the number of records exported.

Output

{
"doi": "10.1002/9781119584414.ch4",
"title": "Complete Dental Cleaning",
"type": "other",
"publisher": "Wiley",
"containerTitle": "Blackwell's Five-Minute Veterinary Consult Clinical Companion",
"authors": "",
"publishedDate": "2021-06-11",
"volume": "",
"issue": "",
"page": "47-54",
"issn": "",
"isbn": "9781119584339,9781119584414",
"referenceCount": 0,
"isReferencedByCount": 0,
"url": "https://doi.org/10.1002/9781119584414.ch4",
"member": "311"
}

Pricing

Pay per result: $0.001 per publication record exported (~$1 per 1,000 records). A run pulling 50 records, like the example input above, costs $0.05.

Use cases

  • Building a citation-count dataset for a bibliometrics study across a set of DOIs or a publisher's catalog.
  • Populating a university library or repository system with structured metadata (authors, ISSN/ISBN, volume/issue) for newly deposited works.
  • Feeding an AI research assistant or literature-review tool with clean title/author/journal/date fields instead of parsing raw API JSON in-house.