# Codeforces Grandmaster Stats Scraper

**Use case:** 

Scrape Codeforces grandmaster profiles with rating, rank, contributions and contest history. Follow elite coders by handle.

## Input

```json
{
  "mode": "users",
  "handles": [
    "jiangly"
  ],
  "tags": [],
  "gym": false,
  "activeOnly": false,
  "maxItems": 5
}
```

## Output

```json
{
  "handle": {
    "label": "Handle",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "avatar": {
    "label": "Avatar",
    "format": "text"
  },
  "titlePhoto": {
    "label": "Title Photo",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "maxRating": {
    "label": "Max Rating",
    "format": "number"
  },
  "rank": {
    "label": "Rank",
    "format": "text"
  },
  "maxRank": {
    "label": "Max Rank",
    "format": "text"
  },
  "firstName": {
    "label": "First Name",
    "format": "text"
  },
  "lastName": {
    "label": "Last Name",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "organization": {
    "label": "Organization",
    "format": "text"
  },
  "contribution": {
    "label": "Contribution",
    "format": "number"
  }
}
```

## About this Actor

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