v48

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-0398207265.0 KB
encounters

Get pokemon encounter

Handles Pokemon Encounters as a sub-resource.

get/api/v2/pokemon/{pokemon_id}/encounters

Path parameters

pokemon_idstring required

Response

Example response

[
  {
    "location_area": {
      "name": "cerulean-city-area",
      "url": "https://pokeapi.co/api/v2/location-area/281/"
    },
    "version_details": [
      {
        "encounter_details": [
          {
            "chance": 100,
            "condition_values": [
              {
                "name": "story-progress-beat-red",
                "url": "https://pokeapi.co/api/v2/encounter-condition-value/55/"
              }
            ],
            "max_level": 10,
            "method": {
              "name": "gift",
              "url": "https://pokeapi.co/api/v2/encounter-method/18/"
            },
            "min_level": 10
          }
        ],
        "max_chance": 100,
        "version": {
          "name": "red",
          "url": "https://pokeapi.co/api/v2/version/1/"
        }
      }
    ]
  }
]