# PubMed Diabetes Treatment Citations Scraper

**Use case:** 

Scrape PubMed citations for diabetes treatment with article title, authors, journal, publication date, and abstract. Export to JSON or CSV.

## Input

```json
{
  "searchTerm": "diabetes treatment",
  "sort": "relevance",
  "maxItems": 50
}
```

## Output

```json
{
  "pmid": {
    "label": "PMID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "url": {
    "label": "Url"
  },
  "authors": {
    "label": "Authors",
    "format": "text"
  },
  "journal": {
    "label": "Journal",
    "format": "text"
  },
  "publicationDate": {
    "label": "Publication Date",
    "format": "date"
  },
  "volume": {
    "label": "Volume",
    "format": "text"
  },
  "issue": {
    "label": "Issue",
    "format": "text"
  },
  "pages": {
    "label": "Pages",
    "format": "text"
  },
  "abstract": {
    "label": "Abstract",
    "format": "text"
  },
  "doi": {
    "label": "DOI",
    "format": "text"
  },
  "pmcId": {
    "label": "PMC ID",
    "format": "text"
  },
  "scrapedTimestamp": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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