v48

OpenAPI 3.1.0raw.githubusercontent.com2026-08-0398207265.0 KB
items

Get item

An item is an object in the games which the player can pick up, keep in their bag, and use in some manner. They have various uses, including healing, powering up, helping catch Pokémon, or to access a new area.

get/api/v2/item/{id}/

Path parameters

idstring required

This parameter can be a string or an integer.

Response

idinteger required
namestring required
costinteger nullable
fling_powerinteger nullable

Example response

{
  "attributes": [
    {
      "name": "countable",
      "url": "https://pokeapi.co/api/v2/item-attribute/1/"
    }
  ],
  "held_by_pokemon": [
    {
      "pokemon": {
        "name": "farfetchd",
        "url": "https://pokeapi.co/api/v2/pokemon/83/"
      },
      "version-details": [
        {
          "rarity": 5,
          "version": {
            "name": "ruby",
            "url": "https://pokeapi.co/api/v2/version/7/"
          }
        }
      ]
    }
  ],
  "sprites": {
    "default": "https://pokeapi.co/media/sprites/items/master-ball.png"
  },
  "baby_trigger_for": {
    "url": "https://pokeapi.co/api/v2/evolution-chain/51/"
  },
  "machines": [
    {
      "machine": "https://pokeapi.co/api/v2/machine/1/",
      "version_group": {
        "name": "sword-shield",
        "url": "https://pokeapi.co/api/v2/version-group/20/"
      }
    }
  ]
}