# Lichess Grandmaster Stats Scraper

**Use case:** 

Batch-scrape multiple Lichess accounts for ratings, variant performance and game counts. Get structured player stats data as JSON.

## Input

```json
{
  "usernames": [
    "thibault",
    "DrNykterstein"
  ],
  "maxItems": 4
}
```

## Output

```json
{
  "id": {
    "label": "Id",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "patron": {
    "label": "Patron",
    "format": "text"
  },
  "verified": {
    "label": "Verified",
    "format": "text"
  },
  "flair": {
    "label": "Flair",
    "format": "text"
  },
  "createdAt": {
    "label": "Created At",
    "format": "text"
  },
  "seenAt": {
    "label": "Seen At",
    "format": "text"
  },
  "bio": {
    "label": "Bio",
    "format": "text"
  },
  "realName": {
    "label": "Real Name",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "fideRating": {
    "label": "Fide Rating",
    "format": "text"
  },
  "uscfRating": {
    "label": "Uscf Rating",
    "format": "text"
  }
}
```

## About this Actor

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