# Kaggle and Zindi Contest Scraper

**Use case:** 

Scrape Kaggle and Zindi competitions from ML Contests with platform names, prizes, deadlines, tags, sponsors, and URLs.

## Input

```json
{
  "platforms": [
    "Kaggle",
    "Zindi"
  ],
  "tags": [],
  "prizeOnly": false,
  "maxResults": 150
}
```

## Output

```json
{
  "name": {
    "label": "Competition",
    "format": "text"
  },
  "platform": {
    "label": "Platform",
    "format": "text"
  },
  "prize": {
    "label": "Prize",
    "format": "text"
  },
  "deadline": {
    "label": "Deadline",
    "format": "text"
  },
  "tags": {
    "label": "Tags",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [ML Contests Scraper](https://apify.com/automation-lab/mlcontests-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/mlcontests-scraper) to learn more, explore other use cases, and run it yourself.