# Heart Disease Cardiovascular Research from PubMed

**Use case:** 

Retrieve systematic reviews on cardiovascular disease and heart failure. Extract key data including abstracts, authors, and MeSH terms.

## Input

```json
{
  "query": "cardiovascular disease heart failure mortality",
  "pmids": [
    "39001234",
    "38987654"
  ],
  "maxResults": 500,
  "articleType": "systematic-review",
  "sort": "relevance",
  "dateFrom": "2020/01/01",
  "dateTo": "2024/12/31",
  "fetchAbstracts": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "pmid": {
    "label": "PMID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "authors": {
    "label": "Authors",
    "format": "string"
  },
  "authorCount": {
    "label": "Author Count",
    "format": "integer"
  },
  "journal": {
    "label": "Journal",
    "format": "string"
  },
  "pubDate": {
    "label": "Publication Date",
    "format": "string"
  },
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "doi": {
    "label": "DOI",
    "format": "string"
  },
  "articleType": {
    "label": "Article Type",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [PubMed Scraper — Abstracts, Authors & MeSH Terms](https://apify.com/logiover/pubmed-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/pubmed-scraper) to learn more, explore other use cases, and run it yourself.