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
idinteger required
A unique integer value identifying this item.
Response
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/"
}
}
]
}