# 🔬 OpenAlex Scraper — Papers, Citations & Abstracts

**Use case:** 

No-code, cheap OpenAlex research API. Scrape paper data: title, abstract, authors, institutions, venue, publisher, citations, DOI — cheapest per item.

## Input

```json
{
  "searchTerms": [
    "machine learning"
  ],
  "fromYear": 0,
  "toYear": 0,
  "openAccessOnly": false,
  "workType": "",
  "maxResultsPerSearch": 50,
  "includeAbstract": true
}
```

## Output

```json
{
  "searchTerm": {
    "label": "Search Term",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "doi": {
    "label": "Doi",
    "format": "link"
  },
  "openAlexId": {
    "label": "Open Alex Id",
    "format": "link"
  },
  "publicationYear": {
    "label": "Publication Year",
    "format": "number"
  },
  "publicationDate": {
    "label": "Publication Date",
    "format": "date"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "citedByCount": {
    "label": "Cited By Count",
    "format": "number"
  },
  "referencedWorksCount": {
    "label": "Referenced Works Count",
    "format": "number"
  },
  "authorsList": {
    "label": "Authors List",
    "format": "text"
  },
  "authors": {
    "label": "Authors",
    "format": "text"
  },
  "authorCount": {
    "label": "Author Count",
    "format": "number"
  },
  "venue": {
    "label": "Venue",
    "format": "text"
  },
  "publisher": {
    "label": "Publisher",
    "format": "text"
  },
  "isOpenAccess": {
    "label": "Is Open Access",
    "format": "boolean"
  },
  "oaStatus": {
    "label": "Oa Status",
    "format": "text"
  },
  "oaUrl": {
    "label": "Oa Url",
    "format": "link"
  },
  "topics": {
    "label": "Topics",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "abstract": {
    "label": "Abstract",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [OpenAlex Scholarly Works Scraper](https://apify.com/hipersoft/openalex-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/hipersoft/openalex-scraper) to learn more, explore other use cases, and run it yourself.