Skip to main content
GET
/
v3
/
products
/
{product}
/
variants
/
{variant}
Read Product Variant
curl --request GET \
  --url http://localhost/api/v3/products/{product}/variants/{variant}
{
  "data": {
    "id": 123,
    "product_id": 123,
    "sku": "<string>",
    "external_id": "<string>",
    "barcode": "<string>",
    "web_url": "<string>",
    "handle": "<string>",
    "title": "<string>",
    "description": "<string>",
    "position": 123,
    "price": 123,
    "price_discounted": 123,
    "price_comparison": 123,
    "price_cost": 123,
    "available_quantity": 123,
    "images": "<string>",
    "meta": [
      "<unknown>"
    ],
    "tags": [
      "<string>"
    ],
    "options": [
      {
        "name": "<string>",
        "value": "<string>",
        "sort_order": 123
      }
    ],
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.omneo.io/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

product
integer
required

The product ID

variant
integer
required

The variant ID

Response

ProductVariant

data
ProductVariant · object
required