Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.
get_api_artifactsOne API's artifacts, grouped by type.
get_openapiThe primary OpenAPI for this API.
find_similar_apisAPIs that look like this one.
apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
resolveTurn a domain, URL or GitHub org into the provider it belongs to.
find_cohortsEvery scored population of providers in the catalog.
All 92 tools →
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/bigcommerce-product-variants-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we
store it to create your key and to recognise you if you sign in with another
provider. See our Privacy Policy and
Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: BigCommerce Catalog Product Variants API
description: "> The Catalog API manages products, categories, brands, bulk pricing rules, and more. To learn more about catalog resources, see the [Catalog Overview](/docs/store-operations/catalog).\n\nA Product Variant is a version of a product that has its own SKU. For example, a catalog might model a particular style of high-top sneakers that come in both red and blue as one product - high-tops - with two variants - red and blue. From a storefront point of view, Product Variants are often what shoppers seek. They are also the object that maps to SKUs and tracks inventory. A Product with one only Variant is a _base variant_.\n\nOur Catalog Product Variants endpoints let you work in two ways. \n\nOn a per-product basis, you can [create and manage Product Variants](/docs/rest-catalog/product-variants), their [images](/docs/rest-catalog/product-variants/images), and their [metafields](/docs/rest-catalog/product-variants/metafields), which are arbitrary key-value attributes.\n\nBy design, Product Variants consist of a combination of [Product Variant Option values](/docs/rest-catalog/product-variant-options/values).\n\nThis API family also provides endpoints that can make [batch updates](/docs/rest-catalog/product-variants/variants-batch#update-variants-batch) to Product Variants from different products across the Catalog, as well as [getting all variants](/docs/rest-catalog/product-variants/variants-batch#get-all-variants).\n\nThe terms \"product variant\" and \"variant\" are used interchangeably throughout the documentation.\n\n> To learn more about authenticating Catalog endpoints, locate the **Authentication** section at the top of each endpoint, then click **Show Details**.\n\n## Resources\n\n### Webhooks\nLearn more about [Product webhook events](/docs/integrations/webhooks/events#products).\n\n### Additional Catalog endpoints\n* [Brands](/docs/rest-catalog/brands)\n* [Categories](/docs/rest-catalog/categories)\n* [Category Trees](/docs/rest-catalog/category-trees)\n* [Products](/docs/rest-catalog/products)\n* [Product Modifiers](/docs/rest-catalog/product-modifiers)\n* [Product Variant Options](/docs/rest-catalog/product-variant-options)"
termsOfService: https://www.bigcommerce.com/terms
contact:
name: BigCommerce
url: https://www.bigcommerce.com
email: support@bigcommerce.com
version: ''
servers:
- url: https://api.bigcommerce.com/stores/{store_hash}/v3
variables:
store_hash:
default: store_hash
description: Permanent ID of the BigCommerce store.
description: BigCommerce API Gateway
security:
- X-Auth-Token: []
tags:
- name: Product Variants
paths:
/catalog/products/{product_id}/variants:
parameters:
- $ref: '#/components/parameters/Accept'
- $ref: '#/components/parameters/ProductIdParam'
get:
tags:
- Product Variants
summary: BigCommerce Get All Product Variants
description: Returns a list of product *Variants*. Optional parameters can be passed in.
operationId: getProductVariants
parameters:
- name: page
in: query
description: Specifies the page number in a limited (paginated) list of products.
schema:
type: integer
- name: limit
in: query
description: Controls the number of items per page in a limited (paginated) list of products.
schema:
type: integer
- name: include_fields
in: query
description: Fields to include, in a comma-separated list. The ID and the specified fields will be returned.
schema:
type: string
- name: exclude_fields
in: query
description: Fields to exclude, in a comma-separated list. The specified fields will be excluded from a response. The ID cannot be excluded.
schema:
type: string
responses:
'200':
description: ''
content:
application/json:
schema:
title: Variant Collection Response
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/productVariant_Full'
meta:
$ref: '#/components/schemas/metaCollection_Full'
example:
data:
- id: 382
product_id: 192
sku: SMIT
sku_id: 348
price: 10
calculated_price: 10
sale_price: 8
retail_price: 10
map_price: {}
weight: 4
calculated_weight: 2
width: 5
height: 5
depth: 5
is_free_shipping: false
fixed_cost_shipping_price: 10
purchasing_disabled: false
purchasing_disabled_message: ''
image_url: ''
cost_price: 0
upc: ''
mpn: ''
gtin: ''
inventory_level: 0
inventory_warning_level: 0
bin_picking_number: ''
option_values:
- id: 174
label: Beige
option_id: 220
option_display_name: Color
- id: 383
product_id: 192
sku: SMIT-1
sku_id: 349
price: 25
calculated_price: 25
sale_price: 20
retail_price: 25
map_price: {}
weight: 2
calculated_weight: 1
width: 5
height: 5
depth: 5
is_free_shipping: false
fixed_cost_shipping_price: 10
purchasing_disabled: false
purchasing_disabled_message: ''
image_url: ''
cost_price: 25
upc: ''
mpn: ''
gtin: ''
inventory_level: 0
inventory_warning_level: 0
bin_picking_number: ''
option_values:
- id: 175
label: Grey
option_id: 220
option_display_name: Color
- id: 384
product_id: 192
sku: SMIT-2
sku_id: 350
price: 25
calculated_price: 25
sale_price: 20
retail_price: 25
map_price: {}
weight: 2
calculated_weight: 1
width: 5
height: 5
depth: 5
is_free_shipping: false
fixed_cost_shipping_price: 10
purchasing_disabled: false
purchasing_disabled_message: ''
image_url: ''
cost_price: 25
upc: ''
mpn: ''
gtin: ''
inventory_level: 0
inventory_warning_level: 0
bin_picking_number: ''
option_values:
- id: 176
label: Black
option_id: 220
option_display_name: Color
meta:
pagination:
total: 3
count: 3
per_page: 50
current_page: 1
total_pages: 1
links:
current: ?page=1&limit=50
'404':
description: 'The resource was not found.
'
content:
application/json:
schema:
title: Not Found
type: object
properties:
status:
type: integer
description: '404 HTTP status code.
'
title:
type: string
description: The error title describing the particular error.
type:
type: string
instance:
type: string
description: Error payload for the BigCommerce API.
post:
tags:
- Product Variants
summary: BigCommerce Create a Product Variant
description: 'Creates a *Product Variant*.
**Required Fields**
* sku
* option_values
**Read-Only Fields**
* id
**Limits**
* 600 SKUs per product limit.
* 255 characters SKU length limit.
Variants need to be created one at a time using this endpoint. To use a variant array, create products, and variants in the same call use the [Create Products](/docs/rest-catalog/products#create-a-product) endpoint during the initial product creation.'
operationId: createProductVariant
parameters:
- $ref: '#/components/parameters/ContentType'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/productVariant_Post'
required: true
responses:
'200':
description: ''
content:
application/json:
schema:
title: Variant Response
type: object
properties:
data:
$ref: '#/components/schemas/productVariant_Full'
meta:
$ref: '#/components/schemas/metaEmpty_Full'
examples:
example-1:
value:
data:
cost_price: 0
price: 0
sale_price: 0
retail_price: 0
weight: 0
width: 0
height: 0
depth: 0
is_free_shipping: true
fixed_cost_shipping_price: 0
purchasing_disabled: true
purchasing_disabled_message: string
upc: string
inventory_level: 0
inventory_warning_level: 0
bin_picking_number: string
mpn: string
gtin: 012345678905
id: 0
product_id: 0
sku: string
sku_id: 0
option_values:
- option_display_name: Color
label: Beige
id: 146
option_id: 151
calculated_price: 0
calculated_weight: 0
meta: {}
example-2:
value:
data:
id: 384
product_id: 192
sku: SMIT-2
sku_id: 350
price: 25
calculated_price: 25
sale_price: 20
retail_price: 25
map_price: {}
weight: 2
calculated_weight: 1
width: 5
height: 5
depth: 5
is_free_shipping: false
fixed_cost_shipping_price: 10
purchasing_disabled: false
purchasing_disabled_message: ''
image_url: ''
cost_price: 25
upc: ''
mpn: ''
gtin: ''
inventory_level: 0
inventory_warning_level: 0
bin_picking_number: ''
option_values:
- id: 176
label: Black
option_id: 220
option_display_name: Color
meta: {}
'207':
description: "Multi-status. The product information was updated successfully, but the inventory data failed to update. \n\nVerify that the inventory-related updates are well-formed and correct; for example, that they donʼt result in negative stock levels. Then consider updating the inventory data again."
content:
application/json:
schema:
$ref: '#/components/schemas/MultiStatus'
'404':
description: 'The resource was not found.
'
content:
application/json:
schema:
title: Not Found
type: object
properties:
status:
type: integer
description: '404 HTTP status code.
'
title:
type: string
description: The error title describing the particular error.
type:
type: string
instance:
type: string
description: Error payload for the BigCommerce API.
x-codegen-request-body-name: Variant
/catalog/products/{product_id}/variants/{variant_id}:
parameters:
- $ref: '#/components/parameters/Accept'
- $ref: '#/components/parameters/ProductIdParam'
- $ref: '#/components/parameters/VariantIdParam'
get:
tags:
- Product Variants
summary: BigCommerce Get a Product Variant
description: Returns a single product *Variant*. Optional parameters can be passed in.
operationId: getProductVariant
parameters:
- name: include_fields
in: query
description: Fields to include, in a comma-separated list. The ID and the specified fields will be returned.
schema:
type: string
- name: exclude_fields
in: query
description: Fields to exclude, in a comma-separated list. The specified fields will be excluded from a response. The ID cannot be excluded.
schema:
type: string
responses:
'200':
description: ''
content:
application/json:
schema:
title: Variant Response
type: object
properties:
data:
$ref: '#/components/schemas/productVariant_Full'
meta:
$ref: '#/components/schemas/metaEmpty_Full'
example:
data:
id: 384
product_id: 192
sku: SMIT-2
sku_id: 350
price: 25
calculated_price: 25
sale_price: 20
retail_price: 25
map_price: {}
weight: 2
calculated_weight: 1
width: 5
height: 5
depth: 5
is_free_shipping: false
fixed_cost_shipping_price: 10
purchasing_disabled: false
purchasing_disabled_message: ''
image_url: ''
cost_price: 25
upc: ''
mpn: ''
gtin: ''
inventory_level: 0
inventory_warning_level: 0
bin_picking_number: ''
option_values:
- id: 176
label: Black
option_id: 220
option_display_name: Color
meta: {}
'404':
description: 'The resource was not found.
'
content:
application/json:
schema:
title: Not Found
type: object
properties:
status:
type: integer
description: '404 HTTP status code.
'
title:
type: string
description: The error title describing the particular error.
type:
type: string
instance:
type: string
description: Error payload for the BigCommerce API.
put:
tags:
- Product Variants
summary: BigCommerce Update a Product Variant
description: Updates a product *Variant*.
operationId: updateProductVariant
parameters:
- $ref: '#/components/parameters/ContentType'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/productVariant_Put'
required: true
responses:
'200':
description: ''
content:
application/json:
schema:
title: Variant Response
type: object
properties:
data:
$ref: '#/components/schemas/productVariant_Full'
meta:
$ref: '#/components/schemas/metaEmpty_Full'
example:
data:
bin_picking_number: '0'
calculated_price: 85
calculated_weight: 1
cost_price: 0
depth: 22
fixed_cost_shipping_price: 0
gtin: ''
height: 14.6
id: 65
inventory_level: 0
inventory_warning_level: 0
is_free_shipping: false
map_price: 0
mpn: TR-SML02
option_values: []
price: 89
product_id: 81
purchasing_disabled: true
purchasing_disabled_message: This item is not available.
retail_price: 89
sale_price: 85
sku: OTS
sku_id: 10
upc: ''
weight: 1
width: 2
meta: {}
'207':
description: "Multi-status. The product information was updated successfully, but the inventory data failed to update. \n\nVerify that the inventory-related updates are well-formed and correct; for example, that they donʼt result in negative stock levels. Then consider updating the inventory data again."
content:
application/json:
schema:
$ref: '#/components/schemas/MultiStatus'
'404':
description: 'The resource was not found.
'
content:
application/json:
schema:
title: Not Found
type: object
properties:
status:
type: integer
description: '404 HTTP status code.
'
title:
type: string
description: The error title describing the particular error.
type:
type: string
instance:
type: string
description: Error payload for the BigCommerce API.
x-codegen-request-body-name: Variant
delete:
tags:
- Product Variants
summary: BigCommerce Delete a Product Variant
description: Deletes a product *Variant*.
operationId: deleteProductVariant
responses:
'204':
description: ''
content: {}
components:
parameters:
VariantIdParam:
name: variant_id
in: path
description: 'ID of the variant on a product, or on an associated Price List Record.
'
required: true
schema:
type: integer
Accept:
name: Accept
in: header
required: true
description: The [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) of the response body.
schema:
type: string
default: application/json
ContentType:
name: Content-Type
in: header
required: true
description: The [MIME type](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types) of the request body.
schema:
type: string
default: application/json
ProductIdParam:
name: product_id
in: path
description: 'The ID of the `Product` to which the resource belongs. Product variant metafield endpoints that have the `product_id` in the request path are successful as long as the parameter is not empty. The `product_id` segment is there only for path consistency.
'
required: true
schema:
type: integer
schemas:
MultiStatus:
type: object
properties:
data:
$ref: '#/components/schemas/productVariant_Full'
errors:
$ref: '#/components/schemas/errorMultiStatus'
meta:
$ref: '#/components/schemas/metaCollection_Full'
pagination_Full:
title: pagination_Full
type: object
properties:
total:
type: integer
description: 'Total number of items in the result set.
'
example: 36
count:
type: integer
description: 'Total number of items in the collection response.
'
example: 36
per_page:
type: integer
description: 'The amount of items returned in the collection per page, controlled by the limit parameter.
'
example: 50
current_page:
type: integer
description: 'The page you are currently on within the collection.
'
example: 1
total_pages:
type: integer
description: 'The total number of pages in the collection.
'
example: 1
links:
type: object
properties:
previous:
type: string
description: 'Link to the previous page returned in the response.
'
current:
type: string
description: 'Link to the current page returned in the response.
'
example: ?page=1&limit=50
next:
type: string
description: 'Link to the next page returned in the response.
'
description: 'Pagination links for the previous and next parts of the whole collection.
'
description: Data about the response, including pagination and collection totals.
x-internal: false
DetailedErrors:
title: DetailedErrors
description: Each key-value pair describes a failure or partial success case.
type: object
properties: {}
additionalProperties: true
x-internal: false
productVariant_Post:
title: productVariant_Post
description: 'The model for a POST to create variants on a product.
'
allOf:
- title: Variant Base
type: object
properties:
cost_price:
minimum: 0
type:
- number
- 'null'
description: The cost price of the variant. Not affected by Price List prices.
format: double
price:
minimum: 0
type:
- number
- 'null'
description: This variant’s base price on the storefront. If a Price List ID is used, the Price List value will be used. If a Price List ID is not used, and this value is `null`, the product’s default price (set in the Product resource’s `price` field) will be used as the base price.
format: double
sale_price:
minimum: 0
type:
- number
- 'null'
description: This variant’s sale price on the storefront. If a Price List ID is used, the Price List value will be used. If a Price List ID is not used, and this value is null, the product’s sale price (set in the Product resource’s `price` field) will be used as the sale price.
format: double
retail_price:
minimum: 0
type:
- number
- 'null'
description: This variant’s retail price on the storefront. If a Price List ID is used, the Price List value will be used. If a Price List ID is not used, and this value is null, the product’s retail price (set in the Product resource’s `price` field) will be used as the retail price.
format: double
weight:
minimum: 0
type:
- number
- 'null'
description: This variant’s base weight on the storefront. If this value is null, the product’s default weight (set in the Product resource’s weight field) will be used as the base weight.
format: double
width:
minimum: 0
type:
- number
- 'null'
description: 'Width of the variant, which can be used when calculating shipping costs. If this value is `null`, the productʼs default width (set in the Product resourceʼs `width` field) will be used as the base width.
'
format: double
height:
minimum: 0
type:
- number
- 'null'
description: 'Height of the variant, which can be used when calculating shipping costs. If this value is `null`, the productʼs default height (set in the Product resourceʼs `height` field) will be used as the base height.
'
format: double
depth:
minimum: 0
type:
- number
- 'null'
description: 'Depth of the variant, which can be used when calculating shipping costs. If this value is `null`, the productʼs default depth (set in the Product resourceʼs `depth` field) will be used as the base depth.
'
format: double
is_free_shipping:
type: boolean
description: 'Flag used to indicate whether the variant has free shipping. If `true`, the shipping cost for the variant will be zero.
'
fixed_cost_shipping_price:
minimum: 0
type:
- number
- 'null'
description: 'A fixed shipping cost for the variant. If defined, this value will be used during checkout instead of normal shipping-cost calculation.
'
format: double
purchasing_disabled:
type: boolean
description: If `true`, this variant will not be purchasable on the storefront.
purchasing_disabled_message:
maxLength: 255
minLength: 0
type: string
description: If `purchasing_disabled` is `true`, this message should show on the storefront when the variant is selected.
upc:
type:
- string
- 'null'
description: The UPC code used in feeds for shopping comparison sites and external channel integrations.
inventory_level:
type:
- integer
- 'null'
description: "Inventory level for the variant, which is used when the product’s inventory_tracking is set to `variant`. The Catalog API returns the inventory for only the default location.\n\nThe inventory for a variant cannot exceed 2,147,483,647 in the catalog. The sum of the variant inventories, or the total inventory for a product, cannot exceed 2,147,483,647. \n\nIf you exceed the limit, the store sets the variant inventory to the limit if no other variant inventories are set. If other variant inventories are set, the store does not save the variant inventory rather than setting the variant inventory to the remaining limit.\n\nThe Catalog API handles limits in a different way than the Inventory API. For more information, see [Limit handling](/docs/store-operations/catalog/inventory-adjustments#limit-handling-in-inventory-versus-catalog-api). "
maximum: 2147483647
inventory_warning_level:
type:
- integer
- 'null'
description: When the variant hits this inventory level, it is considered low stock.
maximum: 2147483647
bin_picking_number:
maxLength: 255
minLength: 0
type:
- string
- 'null'
description: Identifies where in a warehouse the variant is located.
image_url:
type: string
description: Publicly available image url
gtin:
type: string
description: Global Trade Item Number
example: 012345678905
mpn:
type: string
description: Manufacturer Part Number
example: HV-HM02
description: Common Variant properties.
- type: object
properties:
product_id:
type: integer
x-required:
- post
sku:
maxLength: 255
minLength: 1
type: string
x-required:
- post
option_values:
type: array
description: Array of option and option values IDs that make up this variant. Will be empty if the variant is the productʼs base variant.
items:
$ref: '#/components/schemas/productVariantOptionValue_Full'
x-required:
- post
x-internal: false
productVariant_Full:
title: productVariant_Full
allOf:
- $ref: '#/components/schemas/productVariant_Base'
- type: object
properties:
id:
type: integer
product_id:
type: integer
sku:
type: string
sku_id:
type:
- integer
- 'null'
description: Read-only reference to v2 APIʼs SKU ID. Null if it is a base variant.
option_values:
type: array
description: Array of option and option values IDs that make up this variant. Will be empty if the variant is the productʼs base variant.
items:
$ref: '#/components/schemas/productVariantOptionValue_Full'
calculated_price:
type: number
description: 'The price of the variant as seen on the storefront. This price takes into account `sale_price` and any price adjustment rules that are applicable to this variant.
'
format: double
calculated_weight:
type: number
x-internal: false
description: ''
x-examples:
example-1:
cost_price: 0
price: 0
sale_price: 0
retail_price: 0
weight: 0
width: 0
height: 0
depth: 0
is_free_shipping: true
fixed_cost_shipping_price: 0
purchasing_disabled: true
purchasing_disabled_message: string
upc: string
inventory_level: 0
inventory_warning_level: 0
bin_picking_number: string
mpn: string
gtin: 012345678905
id: 0
product_id: 0
sku: string
sku_id: 0
option_values:
- option_display_name: Color
label: Beige
id: 146
option_id: 151
calculated_price: 0
calculated_weight: 0
productVariant_Put:
title: productVariant_Put
description: The model for a PUT to update variants on a product.
allOf:
- $ref: '#/components/schemas/productVariant_Base'
- type: object
properties:
product_id:
type: integer
x-required:
- post
sku:
maxLength: 255
minLength: 1
type: string
x-required:
- post
x-internal:
# --- truncated at 32 KB (41 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/bigcommerce/refs/heads/main/openapi/bigcommerce-product-variants-api-openapi.yml