> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jaksam-scripts.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get static item

> Ruft allgemeine Item-Informationen aus dem Inventar ab, wie Gewicht, Stapelbarkeit, Beschreibung, Label usw.

Ruft allgemeine Item-Informationen aus dem Inventar ab, wie Gewicht, Stapelbarkeit, Beschreibung, Label usw.

<CodeGroup>
  ```lua Export theme={null}
  exports['jaksam_inventory']:getStaticItem(itemName)
  ```

  ```lua Example theme={null}
  local item = exports['jaksam_inventory']:getStaticItem('bread')
  print(item.label) -- Bread
  print(item.weight) -- 1.0
  print(item.stackable) -- true
  print(item.description) -- A bread
  print(item.maxStack) -- 100
  print(item.rarity) -- common
  print(item.type) -- item|container|ammo|currency
  ```
</CodeGroup>

### Parameter

| Name       | Datentyp | Beschreibung                    |
| ---------- | -------- | ------------------------------- |
| `itemName` | string   | Der Name des abzurufenden Items |

### Rückgabewert

| Name   | Datentyp | Beschreibung                                                                 |
| ------ | -------- | ---------------------------------------------------------------------------- |
| `item` | table    | Die Item-Informationen. Wird das Item nicht gefunden, wird nil zurückgegeben |


## Related topics

- [Get static items list](/de/jaksam-inventory/functions/shared/get-static-items-list.md)
- [Get item label](/de/jaksam-inventory/functions/shared/get-item-label.md)
- [Shared](/de/jaksam-inventory/functions/shared/index.md)
- [Item transferred](/de/jaksam-inventory/hooks/on-item-transferred.md)
- [Get items by name](/de/jaksam-inventory/functions/server/get-items-by-name.md)
