# Rate My Professors Search Johnson Scraper

**Use case:** 

Scrape Rate My Professors results for Johnson with professor name, school, department, quality rating, difficulty, and number of ratings. Export to JSON or CSV.

## Input

```json
{
  "maxItems": 50,
  "startUrl": "https://www.ratemyprofessors.com/search/professors/?q=johnson"
}
```

## Output

```json
{
  "professorName": {
    "label": "Professor",
    "format": "text"
  },
  "professorId": {
    "label": "ID",
    "format": "text"
  },
  "schoolName": {
    "label": "School",
    "format": "text"
  },
  "department": {
    "label": "Department",
    "format": "text"
  },
  "overallQualityRating": {
    "label": "Rating",
    "format": "text"
  },
  "numberOfRatings": {
    "label": "Ratings",
    "format": "text"
  },
  "wouldTakeAgainPercentage": {
    "label": "Would Take Again",
    "format": "text"
  },
  "levelOfDifficulty": {
    "label": "Difficulty",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "schoolId": {
    "label": "School ID",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "ratingDistribution": {
    "label": "Rating Distribution",
    "format": "array"
  },
  "similarProfessors": {
    "label": "Similar Professors",
    "format": "array"
  },
  "reviews": {
    "label": "Reviews",
    "format": "array"
  },
  "professorUrl": {
    "label": "Professor URL",
    "format": "link"
  },
  "schoolUrl": {
    "label": "School URL",
    "format": "link"
  },
  "scrapedTimestamp": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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