Skip to main content
POST
/
api
/
myntra
/
brands
/
products
/myntra/brands/products
curl --request POST \
  --url https://api.anysite.io/api/myntra/brands/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "brand": "<string>",
  "count": 2,
  "timeout": 300,
  "color": "Black",
  "size": "M",
  "category": "Tshirts",
  "min_price": 1,
  "max_price": 1
}
'
[
  {
    "id": "<string>",
    "@type": "@myntra_product_card",
    "name": "<string>",
    "brand": "<string>",
    "gender": "<string>",
    "article_type": "<string>",
    "sub_category": "<string>",
    "master_category": "<string>",
    "colour": "<string>",
    "mrp": 123,
    "price": 123,
    "discount_percent": 123,
    "discount_label": "<string>",
    "rating": 123,
    "rating_count": 123,
    "sizes": [],
    "image": "<string>",
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
brand
string
required

Brand name

Minimum string length: 1
Examples:

"Nike"

"Roadster"

count
integer
required

Max number of products to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort
enum<string> | null

Result ordering

Available options:
new,
popularity,
discount,
price_asc,
price_desc,
customer_rating
color
string | null

Filter by colour

Example:

"Black"

size
string | null

Filter by size

Example:

"M"

gender
enum<string> | null

Filter by gender

Available options:
men,
women,
boys,
girls,
unisex
category
string | null

Filter by article-type category

Example:

"Tshirts"

min_price
integer | null

Minimum price filter

Required range: x >= 0
max_price
integer | null

Maximum price filter

Required range: x >= 0

Response

Successful Response

id
string
required
@type
string
default:@myntra_product_card
name
string | null
brand
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
rating
number | null
rating_count
integer | null
sizes
string[]
image
string | null
url
string | null