Skip to main content
POST
/
api
/
flipkart
/
sellers
/flipkart/sellers
curl --request POST \
  --url https://api.anysite.io/api/flipkart/sellers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "@flipkart_seller",
    "id": "<string>",
    "name": "<string>",
    "rating": 123,
    "years_with_flipkart": 123,
    "product_sold": "<string>",
    "quality_score": 123,
    "speed_score": 123,
    "product_quality_rating": 123,
    "service_quality_rating": 123,
    "description": "<string>",
    "product_id": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Flipkart product item id or a product URL — returns the seller (store) offering that product

Minimum string length: 1
Examples:

"itm6ac6485515ae4"

"https://www.flipkart.com/apple-iphone-15-black-128-gb/p/itm6ac6485515ae4?pid=MOBGTAGPTB3VS24W"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@flipkart_seller
id
string | null
name
string | null
rating
number | null
years_with_flipkart
integer | null
product_sold
string | null
quality_score
number | null
speed_score
number | null
product_quality_rating
number | null
service_quality_rating
number | null
description
string | null
product_id
string | null