---
title: "Get ratings history of a FIDE player"
method: GET
path: "/api/fide/player/{playerId}/ratings"
tags: ["FIDE"]
---

# Get ratings history of a FIDE player

`GET /api/fide/player/{playerId}/ratings`

Historical standard, rapid and blitz ratings of a FIDE player

## Path parameters

- `playerId` integer, required

## Response `200`

The rating histories

- FIDEPlayerRatings — Data points are encoded. Each number contains a year, a month, and an elo rating. `2015081568` -> `August 2015: 1568` Here's an example decoding implementation in JS: ```js const decodePoint = point => { const elo = point % 10000; const dateNum = Math.floor(point / 10000); const year = Math.floor(dateNum / 100); const month = dateNum % 100; return [year, month, elo]; }; ``` Consecutive months with same elo are omitted. For a given elo, only the first and last month are provided.
  - `standard` number[], required
  - `rapid` number[], required
  - `blitz` number[], required

---

[API](https://skmtc.net/lichess/apis/lichess-org-api-reference.md) · [All operations](https://skmtc.net/lichess/apis/lichess-org-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lichess/lichess-org-api-reference/versions/1425db81eb3b/schema)
