Get item data
get_itemRetrieve a held item's full effect data, including category flags, Z-move, Natural Gift, Fling, and stat boosts. Confirm what an item does before recommending it in a competitive Pokémon team.
Instructions
Get one held item's data: effect text, category flags (Berry, Choice, Mega Stone, …), Z-move, Natural Gift, Fling, and flat stat boosts. Use it to confirm what an item actually does before recommending it; get_set returns the item a curated meta set runs. Accepts item names case-insensitively; unknown items return an isError with near matches. Read-only and offline.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| item | Yes | Item name, e.g. "Choice Band", "Assault Vest", "Leftovers". |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| gen | Yes | Generation the item was introduced in. | |
| num | Yes | Item number in the dataset; 0 for items that have none. | |
| desc | Yes | Full effect description. | |
| name | Yes | Item name, e.g. "Choice Band". | |
| fling | No | Fling data, present only for items that can be flung. | |
| isGem | No | true when the item is a one-use type Gem that boosts a matching move; absent otherwise. | |
| zMove | No | For Z-Crystals: the Z-Move it unlocks, or true for crystals whose move depends on the held move; absent when the item is not a Z-Crystal. | |
| boosts | No | Flat stat stages the item grants while held, keyed by stat id, e.g. {"atk": 2} for Choice Band; absent for items that do not change stats directly. | |
| isBerry | No | true when the item is a Berry (held and eaten on a trigger); absent otherwise. | |
| isChoice | No | true when the item is a Choice item that locks the holder into one move; absent otherwise. | |
| itemUser | No | Species that can use the item where it is restricted to them; absent when any species can hold it. | |
| megaStone | No | Mega Stone holders: species name to the Mega forme it unlocks, e.g. {"Garchomp": "Garchomp-Mega"}; absent when the item is not a Mega Stone. | |
| shortDesc | Yes | One-line effect summary. | |
| isPokeball | No | true when the item is a Poké Ball used for catching; absent otherwise. | |
| forcedForme | No | Forme this item forces on its holder, e.g. "Dialga-Origin" for Adamant Crystal; absent when the item changes no forme. | |
| naturalGift | No | Natural Gift data, present only for Berries (the items Natural Gift can consume). | |
| isNonstandard | Yes | "Past", "Future", "Unobtainable", or "CAP" when the item is not available in the current games; null when it is standard. |