# medRxiv Vaccine Preprints Scraper

**Use case:** 

Scrape the newest vaccine research preprints from medRxiv with title, authors, abstract, DOI, publication date, and subject areas. Export to JSON or CSV.

## Input

```json
{
  "startUrl": "https://www.medrxiv.org/search/asd",
  "maxItems": 25,
  "searchQuery": "vaccine",
  "dateFrom": "2025-01-01",
  "dateTo": "2025-12-31",
  "author": "Smith",
  "orderBy": "newest"
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "authors": {
    "label": "Authors",
    "format": "object"
  },
  "publicationDate": {
    "label": "Publication Date",
    "format": "text"
  },
  "doi": {
    "label": "DOI",
    "format": "link"
  },
  "abstract": {
    "label": "Abstract",
    "format": "text"
  },
  "subjectAreas": {
    "label": "Subject Areas",
    "format": "object"
  },
  "scrapedTimestamp": {
    "label": "Scraped Date",
    "format": "datetime"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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