# PubMed Article Search — Biomedical Literature Scraper

**Use case:** 

Search 37M+ PubMed articles by keyword, author, journal, or date range. Returns typed JSON with title, authors, journal, publication date, and DOI.

## Input

```json
{
  "query": "cancer immunotherapy",
  "maxResults": 5,
  "start": 0,
  "dateFrom": "2023/01/01",
  "dateTo": "2026/12/31"
}
```

## Output

```json
{
  "input": {
    "label": "Query",
    "format": "string"
  },
  "pmid": {
    "label": "PMID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "authors": {
    "label": "Authors",
    "format": "array"
  },
  "journal": {
    "label": "Journal",
    "format": "string"
  },
  "pubdate": {
    "label": "Published",
    "format": "string"
  },
  "doi": {
    "label": "DOI",
    "format": "string"
  },
  "abstract": {
    "label": "Abstract",
    "format": "string"
  },
  "articleUrl": {
    "label": "PubMed URL",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  },
  "scraped_at": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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