Product Graphql API Response Price mismatch from Store

Hey Team Shopify,
I am using Graqhql api to fetch Store Products but in the response i am getting different prices of variants but in a Store product page i see different Price. Here is my Query and response

Here is the Product Link Arabella Ivory | Satin Jewel Detail Wedding Shoe | Paradox London

       query {product(id: “Z2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzE1NTA3MTQ2NjM3Njg2”) {idtitlehandle category {
            fullName
        }
        options {
            name
            position
        }
        createdAt
        description
        descriptionHtml
        handle
        productType
        publishedAt
        status
        tags
        totalInventory
        productCategory {
         productTaxonomyNode {
            fullName
         }
        }
        vendor
        onlineStoreUrl
        variantsCount {
            count
        }
        media(first: 20) {
            edges {
               node {
                    preview {
                        image {
                            url
                        }
                    }
               } 
            }
        }
        variants(first: 250) {
            edges {
                node {
                    id
                    sku
                    title
                    displayName
                    inventoryQuantity
                    inventoryPolicy
                    availableForSale
                    
                    inventoryItem {
                        measurement {
                            weight {
                                unit
                                value
                            }
                        }
                        inventoryLevels(first: 20){
                            edges{
                                node{
                                    id
                                    location{
                                        id
                                    }
                                    quantities(names: ["available"]){
                                        quantity
                                    }
                                }
                            }
                        }
                    }
                    barcode
                    selectedOptions {
                        value
                    }
                    image {
                        url
                    }
                    contextualPricing(context: { country: IE }) {
                        compareAtPrice {
                            amount
                            currencyCode
                        }
                        price {
                            amount
                            currencyCode
                        }
                    }
                }
            }
        }
        
    }
}

And The respone is this here i see price is 135 Array

               ([data] => Array([product] => Array([id] => gid://shopify/Product/15507146637686[title] => Arabella Stiletto Wedding Heels[handle] => arabella-jewel-detail-satin-wedding-shoe[category] => Array([fullName] => Apparel & Accessories > Shoes)
 [options] => Array
                    (
                        [0] => Array
                            (
                                [name] => Size
                                [position] => 1
                            )

                    )

                [createdAt] => 2025-12-18T13:38:26Z
                [description] => Looking for a high-heeled statement wedding shoe? We've got you covered. The Arabella Stiletto Wedding Heels by Paradox London are designed to add a timeless and glamorous feel to your wedding look and pair's beautifully with both a simple and a statement wedding dress. Featuring a T-bar diamante detail to elevate a timeless design.
                [descriptionHtml] => Looking for a high-heeled statement wedding shoe? We’ve got you covered. The Arabella Stiletto Wedding Heels by Paradox London are designed to add a timeless and glamorous feel to your wedding look and pair’s beautifully with both a simple and a statement wedding dress. Featuring a T-bar diamante detail to elevate a timeless design.

                [productType] => Wedding Shoes
                [publishedAt] => 2025-12-19T13:41:52Z
                [status] => ACTIVE
                [tags] => Array
                    (
                        [0] => Court Shoe
                        [1] => Heels
                        [2] => High Heels
                        [3] => New in standard fit
                        [4] => Shoes
                        [5] => Stiletto Wedding Heels
                        [6] => Wedding
                        [7] => wedding heels
                        [8] => Wedding Shoes
                        [9] => Women’s Wedding Shoes
                    )

                [totalInventory] => 331
                [productCategory] => Array
                    (
                        [productTaxonomyNode] => Array
                            (
                                [fullName] => Apparel & Accessories > Shoes
                            )

                    )

                [vendor] => Paradox London
                [onlineStoreUrl] => https://www.paradoxlondon.com/products/arabella-jewel-detail-satin-wedding-shoe
                [variantsCount] => Array
                    (
                        [count] => 7
                    )

                [media] => Array
                    (
                        [edges] => Array
                            (
                                [0] => Array
                                    (
                                        [node] => Array
                                            (
                                                [preview] => Array
                                                    (
                                                        [image] => Array
                                                            (
                                                                [url] => https://cdn.shopify.com/s/files/1/0801/5452/5990/files/Arabella_Ivory_55_c975f426-58d7-432f-baed-0cd00b764784.jpg?v=1766151715
                                                            )

                                                    )

                                            )

                                    )

                                [1] => Array
                                    (
                                        [node] => Array
                                            (
                                                [preview] => Array
                                                    (
                                                        [image] => Array
                                                            (
                                                                [url] => https://cdn.shopify.com/s/files/1/0801/5452/5990/files/Arabella_Ivory_50_e08f553f-7c41-4146-84c1-99183b77f1ae.jpg?v=1766151715
                                                            )

                                                    )

                                            )

                                    )

                                [2] => Array
                                    (
                                        [node] => Array
                                            (
                                                [preview] => Array
                                                    (
                                                        [image] => Array
                                                            (
                                                                [url] => https://cdn.shopify.com/s/files/1/0801/5452/5990/files/Arabella_Ivory_53_6593b2b2-366c-4835-a174-9c59fa8aba0f.jpg?v=1766065178
                                                            )

                                                    )

                                            )

                                    )

                                [3] => Array
                                    (
                                        [node] => Array
                                            (
                                                [preview] => Array
                                                    (
                                                        [image] => Array
                                                            (
                                                                [url] => https://cdn.shopify.com/s/files/1/0801/5452/5990/files/Arabella_Ivory_52_9b10ccfb-f5f9-4ffe-9297-b428acfec799.jpg?v=1766065178
                                                            )

                                                    )

                                            )

                                    )

                                [4] => Array
                                    (
                                        [node] => Array
                                            (
                                                [preview] => Array
                                                    (
                                                        [image] => Array
                                                            (
                                                                [url] => https://cdn.shopify.com/s/files/1/0801/5452/5990/files/Arabella_Ivory_51_df265e8c-7412-4427-ab5b-e0cc435f490e.jpg?v=1766065179
                                                            )

                                                    )

                                            )

                                    )

                                [5] => Array
                                    (
                                        [node] => Array
                                            (
                                                [preview] => Array
                                                    (
                                                        [image] => Array
                                                            (
                                                                [url] => https://cdn.shopify.com/s/files/1/0801/5452/5990/files/Arabella_Ivory_56_57752e7a-bc8d-4b82-ab8d-95c079b8161b.jpg?v=1766065179
                                                            )

                                                    )

                                            )

                                    )

                                [6] => Array
                                    (
                                        [node] => Array
                                            (
                                                [preview] => Array
                                                    (
                                                        [image] => Array
                                                            (
                                                                [url] => https://cdn.shopify.com/s/files/1/0801/5452/5990/files/Arabella_Ivory_57_7bb36283-0f79-43fc-9f4e-2d75b81ea30c.jpg?v=1766065178
                                                            )

                                                    )

                                            )

                                    )

                            )

                    )

                [variants] => Array
                    (
                        [edges] => Array
                            (
                                [0] => Array
                                    (
                                        [node] => Array
                                            (
                                                [id] => gid://shopify/ProductVariant/56915645727094
                                                [sku] => 5055960707150
                                                [title] => 36
                                                [displayName] => Arabella Stiletto Wedding Heels - 36
                                                [inventoryQuantity] => 18
                                                [inventoryPolicy] => DENY
                                                [availableForSale] => 1
                                                [inventoryItem] => Array
                                                    (
                                                        [measurement] => Array
                                                            (
                                                                [weight] => Array
                                                                    (
                                                                        [unit] => KILOGRAMS
                                                                        [value] => 0.5
                                                                    )

                                                            )

                                                        [inventoryLevels] => Array
                                                            (
                                                                [edges] => Array
                                                                    (
                                                                        [0] => Array
                                                                            (
                                                                                [node] => Array
                                                                                    (
                                                                                        [id] => gid://shopify/InventoryLevel/125132964134?inventory_item_id=55352808931702
                                                                                        [location] => Array
                                                                                            (
                                                                                                [id] => gid://shopify/Location/88733188390
                                                                                            )

                                                                                        [quantities] => Array
                                                                                            (
                                                                                                [0] => Array
                                                                                                    (
                                                                                                        [quantity] => 18
                                                                                                    )

                                                                                            )

                                                                                    )

                                                                            )

                                                                    )

                                                            )

                                                    )

                                                [barcode] => 5055960707150
                                                [selectedOptions] => Array
                                                    (
                                                        [0] => Array
                                                            (
                                                                [value] => 36
                                                            )

                                                    )

                                                [image] => 
                                                [contextualPricing] => Array
                                                    (
                                                        [compareAtPrice] => 
                                                        [price] => Array
                                                            (
                                                                [amount] => 135.0
                                                                [currencyCode] => EUR
                                                            )

                                                    )

                                            )

                                    )

                                [1] => Array
                                    (
                                        [node] => Array
                                            (
                                                [id] => gid://shopify/ProductVariant/56915645759862
                                                [sku] => 5055960707167
                                                [title] => 37
                                                [displayName] => Arabella Stiletto Wedding Heels - 37
                                                [inventoryQuantity] => 42
                                                [inventoryPolicy] => DENY
                                                [availableForSale] => 1
                                                [inventoryItem] => Array
                                                    (
                                                        [measurement] => Array
                                                            (
                                                                [weight] => Array
                                                                    (
                                                                        [unit] => KILOGRAMS
                                                                        [value] => 0.5
                                                                    )

                                                            )

                                                        [inventoryLevels] => Array
                                                            (
                                                                [edges] => Array
                                                                    (
                                                                        [0] => Array
                                                                            (
                                                                                [node] => Array
                                                                                    (
                                                                                        [id] => gid://shopify/InventoryLevel/125132964134?inventory_item_id=55352808964470
                                                                                        [location] => Array
                                                                                            (
                                                                                                [id] => gid://shopify/Location/88733188390
                                                                                            )

                                                                                        [quantities] => Array
                                                                                            (
                                                                                                [0] => Array
                                                                                                    (
                                                                                                        [quantity] => 42
                                                                                                    )

                                                                                            )

                                                                                    )

                                                                            )

                                                                    )

                                                            )

                                                    )

                                                [barcode] => 5055960707167
                                                [selectedOptions] => Array
                                                    (
                                                        [0] => Array
                                                            (
                                                                [value] => 37
                                                            )

                                                    )

                                                [image] => 
                                                [contextualPricing] => Array
                                                    (
                                                        [compareAtPrice] => 
                                                        [price] => Array
                                                            (
                                                                [amount] => 135.0
                                                                [currencyCode] => EUR
                                                            )

                                                    )

                                            )

                                    )

But in the Store i see this price There is a difference in price in API response and in Store

Hey @Shopping_IQ! The contextualPricing field on ProductVariant returns the final price for a given country context. That price is either calculated from the base variant price (with currency conversion, market-level adjustments, and rounding applied) or it reflects a fixed local price the merchant has set for that market. The About Shopify Markets docs note that you should load each international market’s prices explicitly through the API rather than trying to compute them from the base price.

There are a few reasons the storefront price can differ from what contextualPricing returns. The most common ones for international stores are tax-inclusive pricing, market-level price adjustments or fixed prices configured in the store’s price list, and international pricing services like Managed Markets or Global-e which may handle storefront-displayed pricing through their own calculation independently of the value in Shopify’s price list.

Worth checking the following with the store owner:

  1. How their international pricing is configured, specifically whether they use Managed Markets or a similar service that manages storefront pricing separately.

  2. What the price breakdown looks like in their admin under Settings > Markets > Ireland > Products and Pricing > View Prices.

If you also have access to the Storefront API, it’s worth testing a product query with the @inContext(country: IE) directive and comparing the result. The Storefront API returns contextualized prices for the buyer’s country, which may resolve differently than the Admin API’s contextualPricing depending on the store’s setup.

Hope this helps!

The Store is using Global-e the price in the store front is shows different but in admin api the price is different then that storefront is showing so what should i do now. Is there any way i can fetch the exact price of that product.

I have also try Store Front API but still get the same response that i was getting on Admin API


Now What should i do to get the Exact Price that Store front is showing in my API

Thanks for testing the Storefront API as well @Shopping_IQ , that confirms this isn’t an API choice issue since both return the same 135.0 EUR.

Since the store is using Global-e (Managed Markets), the price you see on the storefront is calculated client-side by Global-e’s JavaScript, not by Shopify. Global-e loads a script on the product page that overwrites the Shopify-rendered price in the browser using its own conversion rates and pricing rules. Neither the Admin API nor the Storefront API have visibility into that client-side calculation, which is why both return the Shopify price list value (135 EUR) rather than what the customer actually sees (120 EUR).

Unfortunately there’s no Shopify API that will give you the Global-e storefront price (I’ve confirmed this in a test environment across the Admin API, Storefront API, Ajax product API, and the cart). Your best options would be to coordinate with the store owner to get pricing data from their Global-e account, or work with Global-e’s GetCatalogPrices API which is designed to return international product prices as calculated by Global-e’s platform.