# Cricsheet Recent Cricket Matches Scraper

**Use case:** 

Scrape recently added men's cricket matches from Cricsheet. Get teams, venues, dates, results and match metadata as structured JSON.

## Input

```json
{
  "mode": "matches",
  "matchType": "recently_added_30",
  "gender": "male",
  "maxItems": 5
}
```

## 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.