Skip to main content
POST
/
api
/
myntra
/
products
/myntra/products
curl --request POST \
  --url https://api.anysite.io/api/myntra/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@myntra_product",
    "name": "<string>",
    "brand": "<string>",
    "brand_alias": "<string>",
    "gender": "<string>",
    "article_type": "<string>",
    "sub_category": "<string>",
    "master_category": "<string>",
    "colour": "<string>",
    "mrp": 123,
    "price": 123,
    "discount_percent": 123,
    "discount_label": "<string>",
    "is_returnable": true,
    "is_exchangeable": true,
    "is_out_of_stock": true,
    "cod_enabled": true,
    "emi_enabled": true,
    "country_of_origin": "<string>",
    "manufacturer": "<string>",
    "description": "<string>",
    "size_fit": "<string>",
    "materials_care": "<string>",
    "style_note": "<string>",
    "return_period": 123,
    "image": "<string>",
    "images": [],
    "video_url": "<string>",
    "size_chart_url": "<string>",
    "rating": 123,
    "rating_count": 123,
    "review_count": 123,
    "review_image_count": 123,
    "rating_distribution": [],
    "sizes": [],
    "sellers": [],
    "attributes": [],
    "colour_variants": [],
    "offers": [],
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Myntra product (style) ID or a product page URL containing it

Minimum string length: 1
Examples:

"1364628"

"https://www.myntra.com/shirts/roadster/x/1364628/buy"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@myntra_product
name
string | null
brand
string | null
brand_alias
string | null
gender
string | null
article_type
string | null
sub_category
string | null
master_category
string | null
colour
string | null
mrp
number | null
price
number | null
discount_percent
integer | null
discount_label
string | null
is_returnable
boolean | null
is_exchangeable
boolean | null
is_out_of_stock
boolean | null
cod_enabled
boolean | null
emi_enabled
boolean | null
country_of_origin
string | null
manufacturer
string | null
description
string | null
size_fit
string | null
materials_care
string | null
style_note
string | null
return_period
integer | null
image
string | null
images
string[]
video_url
string | null
size_chart_url
string | null
rating
number | null
rating_count
integer | null
review_count
integer | null
review_image_count
integer | null
rating_distribution
MyntraProductRatingDistribution · object[]
sizes
MyntraProductSize · object[]
sellers
MyntraProductSeller · object[]
attributes
MyntraProductAttribute · object[]
colour_variants
MyntraProductColourVariant · object[]
offers
MyntraProductOffer · object[]
url
string | null