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

# Item JSON Import

> Bulk upload and edit item listings from the Seller Area.

Open **Seller Area → Import Items**. Create an import, load a JSON file, review every database field in the editable table, save changes, then import all rows.

The game selector is populated from the active games in the LoLBoost database. Prices are integers in cents, for example `999` means `€9.99`.

```json theme={null}
{
  "items": [
    {
      "external_id": "ITEM-001",
      "game": "league-of-legends",
      "type": "gifting",
      "title": "Example Item",
      "slug": "example-item",
      "description": "Item description",
      "delivery_instructions": "Delivery instructions",
      "image_urls": ["https://example.com/item.webp"],
      "price_type": "fixed",
      "price": 999,
      "currency": "EUR",
      "server": "EUW",
      "delivery_type": "manual",
      "requires_friendship_days": 7,
      "stock": 10,
      "min_purchase_qty": 1,
      "max_purchase_qty": 5,
      "sort_order": 0,
      "active": 1,
      "status": "listed"
    }
  ]
}
```

`external_id`, `title`, and `price` are required. Enable **Update existing** to update a listing with the same seller and `external_id`.
