v1

latestOpenAPI 3.0.3ISC2026-07-134096160.7 KB
Catalog

Retrieve a list of variants of a blueprint from a specific print provider

Retrieves the list of of variants options for the Print Provider and Blueprint. Those form the set of options available for customization Product (Blueprint) on particular manufacturer (Print Provider).

get/v1/catalog/blueprints/{blueprint_id}/print_providers/{print_provider_id}/variants.json

Query parameters

show-out-of-stock string
Example:0

Depending on the value, it shows all variants or only those not out of stock. Without passing this query param, the list will contain only those variants in stock. 0 - show only variants that are in stock. 1 - also show variants out of stock (all variants).

Response

Successful operation

idinteger
titlestring

Example response

{
  "id": 3,
  "title": "DJ",
  "variants": [
    {
      "id": 17390,
      "title": "Heather Grey / XS",
      "options": {
        "color": "Heather Grey",
        "size": "XS"
      },
      "placeholders": [
        {
          "position": "back",
          "decoration_method": "dtf",
          "height": 3995,
          "width": 3153
        }
      ],
      "decoration_methods": [
        "dtg",
        "embroidery"
      ]
    }
  ]
}