# Cricsheet IPL Cricket Match Data Scraper

**Use case:** 

Extract IPL cricket match data from Cricsheet. Pull teams, venues, dates, results and detailed match metadata into clean JSON.

## Input

```json
{
  "mode": "matches",
  "matchType": "ipl",
  "gender": "male",
  "maxItems": 3
}
```

## Output

```json
{
  "match_id": {
    "label": "Match id",
    "format": "number"
  },
  "match_date": {
    "label": "Match date",
    "format": "text"
  },
  "match_type": {
    "label": "Match type",
    "format": "text"
  },
  "match_type_number": {
    "label": "Match type number",
    "format": "text"
  },
  "gender": {
    "label": "Gender",
    "format": "text"
  },
  "team_type": {
    "label": "Team type",
    "format": "text"
  },
  "venue": {
    "label": "Venue",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "event_name": {
    "label": "Event name",
    "format": "text"
  },
  "event_match_number": {
    "label": "Event match number",
    "format": "text"
  },
  "season": {
    "label": "Season",
    "format": "number"
  },
  "overs": {
    "label": "Overs",
    "format": "number"
  },
  "balls_per_over": {
    "label": "Balls per over",
    "format": "number"
  },
  "winner": {
    "label": "Winner",
    "format": "text"
  }
}
```

## About this Actor

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