---
title: "Get warehouse product data"
method: GET
path: "/warehouse/products/{id}"
tags: ["Warehouse Products API"]
---

# Get warehouse product data

`GET /warehouse/products/{id}`

Returns warehouse product data by ID

## Path parameters

- `id` union, required
  - integer
  - string

## Headers

- `X-PF-Store-Id` string

## Response `200`

OK

- object
  - `code` integer — Response status code `200`
  - `result` WarehouseProduct — Warehouse product data
    - `id` integer — Product ID
    - `name` string — Product name
    - `status` 'created' | 'active' | 'suspended' | 'declined' | 'draft' — Product status: **created** - product request created, **active** - product request approved **suspended** - product suspended **declined** - product request declined **draft** - product created as a draft
    - `currency` string — Currency
    - `image_url` string — Image URL of product
    - `retail_price` number — Retail price of product
    - `variants` WarehouseProductVariant[] — Array of product variants
      - `id` integer — Product variant ID
      - `name` string — Name of product variant
      - `sku` string — SKU of product variant
      - `image_url` string — Image URL of product variant
      - `retail_price` number, float — Retail price of product variant
      - `quantity` integer — Total available quantity of product variant in our stock
      - `length` number, float — Length of product variant
      - `width` number, float — Width of product variant
      - `height` number, float — Height of product variant
      - `weight` number, float — Weight of product variant
      - `stock_locations` WarehouseStockLocation[] — Product variant quantities in the warehouse stock
        - `facility` string — Name of the warehouse facility
        - `stocked` integer — Total quantity of product variant in our stock
        - `available` integer — Available quantity of product variant in our stock

## Other responses

- `401` — Unauthorized
- `404` — Not found

---

[API](https://skmtc.net/printful/apis/api-documentation-printful.md) · [All operations](https://skmtc.net/printful/apis/api-documentation-printful/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/printful/api-documentation-printful/revisions/18e2f2e178dd/schema)
