# PubMed Cancer Immunotherapy Review Scraper

**Use case:** 

Scrape PubMed cancer immunotherapy reviews with abstracts, DOI, authors, journals, MeSH terms, and keywords for literature monitoring.

## Input

```json
{
  "queries": [
    "cancer immunotherapy"
  ],
  "maxResultsPerQuery": 50,
  "sort": "pub_date",
  "minDate": "2024/01/01",
  "dateType": "pdat",
  "articleTypes": [
    "Review"
  ],
  "includeAbstract": true,
  "includeMeshTerms": true,
  "requestsPerSecond": 3,
  "batchSize": 20
}
```

## Output

```json
{
  "pmid": {
    "label": "PMID"
  },
  "title": {
    "label": "Title"
  },
  "journal": {
    "label": "Journal"
  },
  "publicationDate": {
    "label": "Publication date"
  },
  "authors": {
    "label": "Authors"
  },
  "doi": {
    "label": "DOI"
  },
  "articleTypes": {
    "label": "Article types"
  },
  "meshTerms": {
    "label": "MeSH terms"
  },
  "keywords": {
    "label": "Keywords"
  },
  "url": {
    "label": "PubMed URL"
  },
  "query": {
    "label": "Query"
  },
  "rank": {
    "label": "Rank"
  },
  "totalResultsForQuery": {
    "label": "Total matches"
  },
  "source": {
    "label": "Source"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [PubMed Search Scraper](https://apify.com/automation-lab/pubmed-search-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/pubmed-search-scraper) to learn more, explore other use cases, and run it yourself.