---
title: "Get Product Size Guide"
method: GET
path: "/products/{id}/sizes"
tags: ["Catalog API"]
---

# Get Product Size Guide

`GET /products/{id}/sizes`

Returns information about the size guide for a specific product.

## Path parameters

- `id` integer, required

## Query parameters

- `unit` string

## Response `200`

OK

- object
  - `code` integer — Response status code `200`
  - `result` ProductSizeGuide — Size Guide information for the Product
    - `product_id` integer, required — Product ID
    - `available_sizes` string[], required — The sizes available for the Product
    - `size_tables` SizeTable[], required — Size tables for the product
      - `type` 'measure_yourself' | 'product_measure' | 'international', required — Size table type
      - `unit` 'inches' | 'cm' — The unit the size table values are in
      - `description` string — The size table description (HTML)
      - `image_url` string — The URL of an image showing the measurements
      - `image_description` string — The description of the measurement image (HTML)
      - `measurements` Measurement[], required — The size table measurements
        - `type_label` string — Measurement type
        - `unit` string — The measurement unit if it's not defined on the size table level or is different
        - `values` MeasurementValue[], required — The measurement values for each size
          - `size` string, required — The size with which the value is associated
          - `value` string — The single value associated with a size (whether this or `min_value` and `max_value` will be present)
          - `min_value` string — The lower boundary of the value range (whether this and `max_value` or `value` will be present)
          - `max_value` string — The upper boundary of the value range (whether this and `min_value` or `value` will be present)

## Other responses

- `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)
