---
title: "Get stat"
method: GET
path: "/api/v2/stat/{id}/"
tags: ["pokemon"]
---

# Get stat

`GET /api/v2/stat/{id}/`

Stats determine certain aspects of battles. Each Pokémon has a value for each stat which grows as they gain levels and can be altered momentarily by effects in battles.

## Path parameters

- `id` string, required

## Response `200`

- StatDetail
  - `id` integer, required
  - `name` string, required
  - `game_index` integer, required
  - `is_battle_only` boolean
  - `affecting_moves` object, required
    - `increase` object[], required
      - `change` integer, required
      - `move` object, required
        - `name` string, required
        - `url` string, uri, required
    - `decrease` object[], required
      - `change` integer, required
      - `move` object, required
        - `name` string, required
        - `url` string, uri, required
  - `affecting_natures` object, required
    - `increase` object[], required
      - `name` string, required
      - `url` string, uri, required
    - `decrease` object[], required
      - `name` string, required
      - `url` string, uri, required
  - `affecting_items` object[], required
    - `name` string, required
    - `url` string, uri, required
  - `characteristics` CharacteristicSummary[], required
    - `url` string, uri, required
  - `move_damage_class` MoveDamageClassSummary, required
    - `name` string, required
    - `url` string, uri, required
  - `names` StatName[], required
    - `name` string, required
    - `language` LanguageSummary, required
      - `name` string, required
      - `url` string, uri, required

## Changes

- **2026-04-29** `650bc9dd2efe` — 2 info
  - api operation id `api_v2_stat_retrieve` removed and replaced with `stat_retrieve`
  - added the required property `affecting_items` to the response with the `200` status
- **2025-05-30** `663217b1c9e4` — 1 info
  - api operation id `stat_retrieve` removed and replaced with `api_v2_stat_retrieve`
- **2025-02-04** `ad06aa7bf909` — 4 breaking
  - the `move_damage_class/name` response property's maxLength was increased from `100` to `200` for the response status `200`
  - the `name` response property's maxLength was increased from `100` to `200` for the response status `200`
  - the `names/items/language/name` response property's maxLength was increased from `100` to `200` for the response status `200`
  - the `names/items/name` response property's maxLength was increased from `100` to `200` for the response status `200`
- **2024-05-10** `88897cce8edf` — 1 info
  - for the `path` request parameter `id`, the type/format was generalized from `integer`/`` to `string`/``
- **2024-03-02** `9f9bcb858ae9` — 4 info
  - added the required property `affecting_moves/decrease` to the response with the `200` status
  - added the required property `affecting_moves/increase` to the response with the `200` status
  - added the required property `affecting_natures/decrease` to the response with the `200` status
  - added the required property `affecting_natures/increase` to the response with the `200` status

[Full history](https://skmtc.dev/pokeapi/apis/poke-api/changes/api/v2/stat/:id/get.md)

---

[API](https://skmtc.dev/pokeapi/apis/poke-api.md) · [All operations](https://skmtc.dev/pokeapi/apis/poke-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/pokeapi/poke-api/revisions/650bc9dd2efe/schema)
