Catalog
Get a Product
Retrieves detailed information about a specific product
GET
/
api
/
v1
/
domains-products
/
{merchant-domain}
/
{product-handle}
curl --request GET \
--url 'https://api.firmly.work/api/v1/domains-products/staging.luma.gift/radiant-tee?postal_code=10001' \
--header 'x-firmly-authorization: YOUR_AUTH_TOKEN'
{
"base_sku": "WS12",
"title": "Radiant Tee",
"handle": "radiant-tee",
"description": "A comfortable and stylish tee perfect for any occasion",
"product_type": "Tees",
"images": [
{
"url": "https://cdn.staging.luma.gift/products/radiant-tee-main.jpg",
"type": "default"
}
],
"variant_option_values": [
{
"display_name": "Size",
"property_accessor": "size",
"position": 0,
"option_values": [
{
"display_name": "Small",
"value": "S",
"available": true
},
{
"display_name": "Medium",
"value": "M",
"available": true
},
{
"display_name": "Large",
"value": "L",
"available": false
}
]
},
{
"display_name": "Color",
"property_accessor": "color",
"position": 1,
"option_values": [
{
"display_name": "White",
"value": "WHITE",
"available": true,
"swatch": {
"url": "https://cdn.staging.luma.gift/swatches/white.jpg"
}
},
{
"display_name": "Orange",
"value": "Orange",
"available": true,
"swatch": {
"url": "https://cdn.staging.luma.gift/swatches/blue.jpg"
}
}
]
}
],
"variants": [
{
"handle": "radiant-tee-xs-orange",
"sku": "WS12-XS-Orange",
"title": "Radiant Tee - XS Orange",
"display_name": "XS / Orange",
"add_to_cart_ref": {
"variant_id": "WS12-XS-Orange"
},
"price": {
"currency": "USD",
"value": 22.00,
"number": 2200,
"symbol": "$"
},
"msrp": {
"currency": "USD",
"value": 22.00,
"number": 2200,
"symbol": "$"
},
"available": true,
"variant_option_list": ["XS", "Orange"],
"images": [
{
"url": "https://cdn.staging.luma.gift/products/radiant-tee-orange.jpg",
"type": "default"
}
],
"messages": [
{
"type": "promotion",
"text": "20% off - Limited Time Offer"
},
{
"type": "stock",
"text": "Only 3 left in stock"
}
]
},
{
"handle": "radiant-tee-xs-blue",
"sku": "WS12-XS-Blue",
"title": "Radiant Tee - XS Blue",
"display_name": "XS / Blue",
"add_to_cart_ref": {
"variant_id": "WS12-XS-Blue"
},
"price": {
"currency": "USD",
"value": 22.00,
"number": 2200,
"symbol": "$"
},
"msrp": {
"currency": "USD",
"value": 22.00,
"number": 2200,
"symbol": "$"
},
"available": true,
"variant_option_list": ["XS", "Blue"],
"images": [
{
"url": "https://cdn.staging.luma.gift/products/radiant-tee-blue.jpg",
"type": "default"
}
]
}
],
"reviews": {
"total_reviews": 127,
"average_rating": 4.5
}
}
Gets comprehensive product information including variants, pricing, availability, and images. Use this endpoint to display product detail pages or product cards in your application.
Path Parameters
The domain of the merchant website (e.g.,
staging.luma.gift)The product handle or identifier. This is typically the URL-friendly version of the product name.
Query Parameters
Postal code to customize pricing, inventory, or availability based on location
Response
The base SKU identifier for the product
The product title
The product handle/identifier
Product description
Category or type of product
Available options for product variants (e.g., colors, sizes)
Show Variant Option
Show Variant Option
Display name for the option type (e.g., “Colors”, “Sizes”)
Property key for accessing this option
Display order position
Available values for this option
Product variants with specific option combinations
Show Variant
Show Variant
Variant handle/identifier
Variant SKU
Variant title (e.g., “Blue Medium”)
Display name for the variant
Reference for adding this variant to cart
Show Cart Reference
Show Cart Reference
The ID to use when adding this variant to cart
Manufacturer’s suggested retail price
Whether this variant is available for purchase
List of option values for this variant (e.g., [“BLUE”, “M”])
Images specific to this variant
Additional product properties/metadata
Expected Errors
The merchant’s platform doesn’t support individual product retrieval
curl --request GET \
--url 'https://api.firmly.work/api/v1/domains-products/staging.luma.gift/radiant-tee?postal_code=10001' \
--header 'x-firmly-authorization: YOUR_AUTH_TOKEN'
{
"base_sku": "WS12",
"title": "Radiant Tee",
"handle": "radiant-tee",
"description": "A comfortable and stylish tee perfect for any occasion",
"product_type": "Tees",
"images": [
{
"url": "https://cdn.staging.luma.gift/products/radiant-tee-main.jpg",
"type": "default"
}
],
"variant_option_values": [
{
"display_name": "Size",
"property_accessor": "size",
"position": 0,
"option_values": [
{
"display_name": "Small",
"value": "S",
"available": true
},
{
"display_name": "Medium",
"value": "M",
"available": true
},
{
"display_name": "Large",
"value": "L",
"available": false
}
]
},
{
"display_name": "Color",
"property_accessor": "color",
"position": 1,
"option_values": [
{
"display_name": "White",
"value": "WHITE",
"available": true,
"swatch": {
"url": "https://cdn.staging.luma.gift/swatches/white.jpg"
}
},
{
"display_name": "Orange",
"value": "Orange",
"available": true,
"swatch": {
"url": "https://cdn.staging.luma.gift/swatches/blue.jpg"
}
}
]
}
],
"variants": [
{
"handle": "radiant-tee-xs-orange",
"sku": "WS12-XS-Orange",
"title": "Radiant Tee - XS Orange",
"display_name": "XS / Orange",
"add_to_cart_ref": {
"variant_id": "WS12-XS-Orange"
},
"price": {
"currency": "USD",
"value": 22.00,
"number": 2200,
"symbol": "$"
},
"msrp": {
"currency": "USD",
"value": 22.00,
"number": 2200,
"symbol": "$"
},
"available": true,
"variant_option_list": ["XS", "Orange"],
"images": [
{
"url": "https://cdn.staging.luma.gift/products/radiant-tee-orange.jpg",
"type": "default"
}
],
"messages": [
{
"type": "promotion",
"text": "20% off - Limited Time Offer"
},
{
"type": "stock",
"text": "Only 3 left in stock"
}
]
},
{
"handle": "radiant-tee-xs-blue",
"sku": "WS12-XS-Blue",
"title": "Radiant Tee - XS Blue",
"display_name": "XS / Blue",
"add_to_cart_ref": {
"variant_id": "WS12-XS-Blue"
},
"price": {
"currency": "USD",
"value": 22.00,
"number": 2200,
"symbol": "$"
},
"msrp": {
"currency": "USD",
"value": 22.00,
"number": 2200,
"symbol": "$"
},
"available": true,
"variant_option_list": ["XS", "Blue"],
"images": [
{
"url": "https://cdn.staging.luma.gift/products/radiant-tee-blue.jpg",
"type": "default"
}
]
}
],
"reviews": {
"total_reviews": 127,
"average_rating": 4.5
}
}
⌘I
curl --request GET \
--url 'https://api.firmly.work/api/v1/domains-products/staging.luma.gift/radiant-tee?postal_code=10001' \
--header 'x-firmly-authorization: YOUR_AUTH_TOKEN'
{
"base_sku": "WS12",
"title": "Radiant Tee",
"handle": "radiant-tee",
"description": "A comfortable and stylish tee perfect for any occasion",
"product_type": "Tees",
"images": [
{
"url": "https://cdn.staging.luma.gift/products/radiant-tee-main.jpg",
"type": "default"
}
],
"variant_option_values": [
{
"display_name": "Size",
"property_accessor": "size",
"position": 0,
"option_values": [
{
"display_name": "Small",
"value": "S",
"available": true
},
{
"display_name": "Medium",
"value": "M",
"available": true
},
{
"display_name": "Large",
"value": "L",
"available": false
}
]
},
{
"display_name": "Color",
"property_accessor": "color",
"position": 1,
"option_values": [
{
"display_name": "White",
"value": "WHITE",
"available": true,
"swatch": {
"url": "https://cdn.staging.luma.gift/swatches/white.jpg"
}
},
{
"display_name": "Orange",
"value": "Orange",
"available": true,
"swatch": {
"url": "https://cdn.staging.luma.gift/swatches/blue.jpg"
}
}
]
}
],
"variants": [
{
"handle": "radiant-tee-xs-orange",
"sku": "WS12-XS-Orange",
"title": "Radiant Tee - XS Orange",
"display_name": "XS / Orange",
"add_to_cart_ref": {
"variant_id": "WS12-XS-Orange"
},
"price": {
"currency": "USD",
"value": 22.00,
"number": 2200,
"symbol": "$"
},
"msrp": {
"currency": "USD",
"value": 22.00,
"number": 2200,
"symbol": "$"
},
"available": true,
"variant_option_list": ["XS", "Orange"],
"images": [
{
"url": "https://cdn.staging.luma.gift/products/radiant-tee-orange.jpg",
"type": "default"
}
],
"messages": [
{
"type": "promotion",
"text": "20% off - Limited Time Offer"
},
{
"type": "stock",
"text": "Only 3 left in stock"
}
]
},
{
"handle": "radiant-tee-xs-blue",
"sku": "WS12-XS-Blue",
"title": "Radiant Tee - XS Blue",
"display_name": "XS / Blue",
"add_to_cart_ref": {
"variant_id": "WS12-XS-Blue"
},
"price": {
"currency": "USD",
"value": 22.00,
"number": 2200,
"symbol": "$"
},
"msrp": {
"currency": "USD",
"value": 22.00,
"number": 2200,
"symbol": "$"
},
"available": true,
"variant_option_list": ["XS", "Blue"],
"images": [
{
"url": "https://cdn.staging.luma.gift/products/radiant-tee-blue.jpg",
"type": "default"
}
]
}
],
"reviews": {
"total_reviews": 127,
"average_rating": 4.5
}
}