get_pokemon_encounters
Retrieve detailed encounter locations for any Pokémon by name or ID. Access specific wild encounter data to track Pokémon habitats and spawn areas.
Instructions
Get location encounter information for a Pokémon
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name or ID of the Pokémon |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "The name or ID of the Pokémon",
"minLength": 1,
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}