Get Pokémon
pokeapi_get_pokemonGet a fully denormalized Pokémon dossier in a single call — base stats, types, abilities (with full English effect text), height/weight, resolved evolution chain, sprite URLs including official artwork, species flavor text, variety list, capture rate, growth rate, gender rate, legendary/mythical flags, egg groups, and (optionally) a summarized learnable-move list. Accepts a name (lowercase, hyphens for spaces, e.g. "bulbasaur", "mr-mime") or Pokédex number. Set include_moves=true to include the move summary (large); defaults to false. Use game_version to select flavor text from a specific game (e.g. "sword", "red"); falls back to the most recent English entry when the version is not found. Use pokeapi_find_pokemon to discover Pokémon by type, generation, or egg group before calling this tool.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| identifier | Yes | Pokémon name (lowercase hyphenated, e.g. "bulbasaur", "mr-mime") or Pokédex number as a string (e.g. "1", "25"). | |
| game_version | No | PokéAPI version name to filter flavor text (e.g. "sword", "red", "scarlet"). Falls back to the most recent English entry when the version is not found. | |
| include_moves | No | Include the full learnable-move summary. Defaults to false because the list is large (100–200+ moves). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | National Pokédex number. | |
| name | No | Canonical Pokémon name in hyphenated lowercase. | |
| error | No | Present when the call failed. Absent on success. | |
| genus | No | English genus (e.g. "Seed Pokémon"). Null when unavailable. | |
| moves | No | Learnable moves (populated when include_moves=true, empty otherwise). | |
| stats | No | Base stats. | |
| types | No | Type names ordered by slot (e.g. ["fire", "flying"]). | |
| sprites | No | Sprite URLs. | |
| heightDm | No | Height in decimetres. | |
| weightHg | No | Weight in hectograms. | |
| abilities | No | Abilities with full effect text. | |
| eggGroups | No | Egg group names. | |
| moveCount | No | Total number of learnable moves regardless of include_moves. | |
| varieties | No | All forms and variants of this species. | |
| genderRate | No | Gender ratio: -1 genderless, 0 always male, 8 always female, 1–7 fraction (eighths) female. | |
| generation | No | Generation introduced (e.g. "generation-i"). | |
| growthRate | No | Growth rate name (e.g. "medium-slow"). | |
| isMythical | No | True for mythical Pokémon. | |
| captureRate | No | Base capture rate (0–255). | |
| isLegendary | No | True for legendary Pokémon. | |
| evolutionChain | No | Evolution tree rooted at the base species. | |
| speciesFlavorText | No | Flavor text from the selected (or most recent) game version. Null when none available. |