---
title: "Get item"
method: GET
path: "/item/{articleNumber}"
tags: ["Item"]
---

# Get item

`GET /item/{articleNumber}`

Returns a single item with the specified article number.

## Path parameters

- `articleNumber` string, required

## Response `200`

OK

- ItemApiModel — An item. Can be a product or a content item
  - `ArticleNumber` string — The article number. Uniquely identifies an item
  - `Name` string — Item name
  - `Price` number, double — Item price
  - `Brand` string — Item brand
  - `Stock` integer — Item stock
  - `GroupCode` string — Item group code, used in grouped navigation and search
  - `Image` string — Item image url
  - `Url` string — Item url
  - `LastModified` string, date-time — The last modified date of the item
  - `UpdatedBy` 'Feed' | 'Api' | 'App' — The source that updated the item
  - `Categories` integer[] — List of categories this item falls in
  - `Attributes` ItemAttributeApiModel[] — List of item attributes
    - `Id` integer — Attribute id
    - `Key` string — Attribute key
    - `Values` string[] — List of attribute values
  - `Status` 'Active' | 'Inactive' — Item status (Active/Inactive)

## Other responses

- `404` — Item not found

---

[API](https://skmtc.net/tweakwise/apis/frontend-api.md) · [All operations](https://skmtc.net/tweakwise/apis/frontend-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tweakwise/frontend-api/revisions/9bd1e2b3633f/schema)
