# Semantic Scholar Scraper - Machine Learning

**Use case:** 

Scrape academic papers from Semantic Scholar by search query with title, authors, abstract, year, venue, and citation data. Export to JSON or CSV.

## Input

```json
{
  "startUrl": "https://www.semanticscholar.org/search?q=machine+learning&sort=relevance",
  "searchQuery": "machine learning",
  "hasPdf": false,
  "maxItems": 5
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "authors": {
    "label": "Authors",
    "format": "object"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "publicationVenue": {
    "label": "Publication Venue",
    "format": "text"
  },
  "abstract": {
    "label": "Abstract"
  },
  "tldr": {
    "label": "Tldr"
  },
  "citationCount": {
    "label": "Citations",
    "format": "number"
  },
  "influentialCitationCount": {
    "label": "Influential Citations",
    "format": "number"
  },
  "isOpenAccess": {
    "label": "Open Access",
    "format": "boolean"
  },
  "hasPdf": {
    "label": "Has PDF",
    "format": "boolean"
  },
  "detailUrl": {
    "label": "Paper URL",
    "format": "link"
  },
  "pdfUrl": {
    "label": "PDF URL",
    "format": "link"
  },
  "doi": {
    "label": "DOI",
    "format": "text"
  },
  "publicationDate": {
    "label": "Publication date"
  },
  "publicationTypes": {
    "label": "Publication types"
  },
  "fieldsOfStudy": {
    "label": "Fields of Study",
    "format": "object"
  },
  "journal": {
    "label": "Journal"
  },
  "referenceCount": {
    "label": "Reference count"
  },
  "externalIds": {
    "label": "External ids"
  },
  "corpusId": {
    "label": "Corpus id"
  },
  "paperId": {
    "label": "Paper ID",
    "format": "text"
  },
  "scrapedTimestamp": {
    "label": "Scraped Date",
    "format": "datetime"
  }
}
```

## About this Actor

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