Arguments
slug
String!Required
A short, human-readable, URL-friendly identifier of a product. You can get slug value from the endpoint /service/application/catalog/v1.0/products/.
size
String!Required
A string indicating the size of the product, e.g. S, M, XL. You can get slug value from the endpoint /service/application/catalog/v1.0/products/sizes.
storeId
IntThe ID of the store that is selling the product, e.g. 1,2,3.
moq
IntAn Integer indication the Minimum Order Quantity of a product, e.g. 100.
pincode
StringThe postal code or zip code for customer.
Response
article_assignment
ArticleAssignmentInformation about serviceability algorithm.
article_id
StringThis unique identifier is assigned to the specific article. This represents item x size x location.
delivery_promise
DeliveryPromiseFormattedEstimated delivery time for the product, indicating when the customer can expect to receive their order based on the shipping options and location.
discount
StringAmount or percentage of discount applied to the product's price, showing the savings for the customer.
discount_meta
DiscountMetaDiscount countdown timer for a product.
grouped_attributes
[ProductGroupedAttribute]Collection of attributes grouped together, which provides detailed characteristics of the product, such as color, size, material, etc.
is_cod
BooleanWhether Cash on Delivery (COD) is available for this product. It is true if COD is available and false otherwise.
is_gift
BooleanWhether the product can be purchased as a gift. It is true if the product is available for gifting and false otherwise.
item_type
StringType of item, indicating the category or nature of the product. Possible values are Standard, Composite, Wet, Digital.
long_lat
[JSON]Longitude and latitude coordinates, possibly indicating the location of the store or warehouse where the product is stocked.
marketplace_attributes
[ProductGroupedAttribute]Attributes specific to the marketplace, such as ratings, reviews, shipping options, and other marketplace-specific details.
pincode
IntPostal code or zip code for which the product's availability and delivery options are being checked.
price
ProductStockPricePrice details of product. Includes currency details, MRP, Selling price.
price_per_piece
ProductStockPriceThe price of a single unit of the product. It helps customers understand the cost per item when purchasing multiple units.
price_per_unit
ProductStockUnitPricePrice per unit of measurement for products sold in quantities (e.g., price per kilogram, liter, etc.), helping customers compare unit prices.
quantity
IntAvailable quantity of the product in stock. It shows the number of units available for purchase.
return_config
ReturnConfigInformation about the return policy for the product, including conditions, timeframes, and any specific instructions or restrictions.
seller
SellerSeller offering the product, including the seller's name, rating, and other relevant information.
seller_count
IntNumber of sellers offering this product. It indicates the level of competition and availability from different sellers.
set
ProductSetCollection or bundle of items that are sold together as a set, detailing the components included in the set.
special_badge
StringSpecial badges or labels assigned to the product, such as "Bestseller," "New Arrival," or "Limited Edition.".
store
AvailableStoreIdentifier or name of the store where the product is available. It helps in identifying the specific location or online store offering the product.
strategy_wise_listing
[StrategyWiseListing]Details about serviceability attributes.
trader
[JSON]Trader information for the offered product.
is_serviceable
BooleanIndicate whether product is servicable or not
tags
JSONTags of article from which it can be identified.
Query
1query productPrice(2 $slug: String!3 $size: String!4 $storeId: Int5 $moq: Int6 $pincode: String7) {8 productPrice(9 slug: $slug10 size: $size11 storeId: $storeId12 moq: $moq13 pincode: $pincode14 ) {15 article_assignment {16 level17 strategy18 }19 article_id20 delivery_promise {21 max22 min23 }24 discount25 discount_meta {26 end27 start28 start_timer_in_minutes29 timer30 }31 grouped_attributes {32 title33 }34 is_cod35 is_gift36 item_type37 long_lat38 marketplace_attributes {39 title40 }41 pincode42 price {43 currency_code44 currency_symbol45 effective46 marked47 selling48 }49 price_per_piece {50 currency_code51 currency_symbol52 effective53 marked54 selling55 }56 price_per_unit {57 currency_code58 currency_symbol59 price60 unit61 }62 quantity63 return_config {64 returnable65 time66 unit67 }68 seller {69 count70 name71 uid72 }73 seller_count74 set {75 quantity76 }77 special_badge78 store {79 uid80 name81 count82 }83 strategy_wise_listing {84 distance85 pincode86 quantity87 tat88 }89 trader90 is_serviceable91 tags92 }93}
Try it
Input Variables
1{2 "slug": "slug",3 "size": "Large",4 "storeId": 42,5 "moq": 42,6 "pincode": "pincode"7}
Response
1{2 "productPrice": {3 "article_assignment": {4 "level": "level",5 "strategy": "strategy"6 },7 "article_id": "article_id",8 "delivery_promise": {9 "max": "max",10 "min": "min"11 },12 "discount": "discount",13 "discount_meta": {14 "end": "end",15 "start": "start",16 "start_timer_in_minutes": 30.7,17 "timer": true18 },19 "grouped_attributes": [20 {21 "title": "title"22 }23 ],24 "is_cod": true,25 "is_gift": true,26 "item_type": "item_type",27 "long_lat": [28 {}29 ],30 "marketplace_attributes": [31 {32 "title": "title"33 }34 ],35 "pincode": 42,36 "price": {37 "currency_code": "currency_code",38 "currency_symbol": "currency_symbol",39 "effective": 30.7,40 "marked": 30.7,41 "selling": 30.742 },43 "price_per_piece": {44 "currency_code": "currency_code",45 "currency_symbol": "currency_symbol",46 "effective": 30.7,47 "marked": 30.7,48 "selling": 30.749 },50 "price_per_unit": {51 "currency_code": "currency_code",52 "currency_symbol": "currency_symbol",53 "price": 30.7,54 "unit": "unit"55 },56 "quantity": 42,57 "return_config": {58 "returnable": true,59 "time": 42,60 "unit": "unit"61 },62 "seller": {63 "count": 42,64 "name": "A name",65 "uid": 4266 },67 "seller_count": 42,68 "set": {69 "quantity": 4270 },71 "special_badge": "special_badge",72 "store": {73 "uid": 42,74 "name": "A name",75 "count": 4276 },77 "strategy_wise_listing": [78 {79 "distance": 42,80 "pincode": 42,81 "quantity": 42,82 "tat": 4283 }84 ],85 "trader": [86 {}87 ],88 "is_serviceable": true,89 "tags": {}90 }91}
Was this section helpful?