Skip to main content
POST
/
api
/
flipkart
/
products
/
search
/flipkart/products/search
curl --request POST \
  --url https://api.anysite.io/api/flipkart/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@flipkart_search_product",
    "alias": "<string>",
    "title": "<string>",
    "brand": "<string>",
    "price": 123,
    "list_price": 123,
    "discount_percentage": 123,
    "currency": "<string>",
    "image": "<string>",
    "key_specs": [],
    "rating": 123,
    "rating_count": 123,
    "review_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
Examples:

"iphone 15"

"running shoes"

count
integer
required

Max number of results to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@flipkart_search_product
alias
string | null
title
string | null
brand
string | null
price
number | null
list_price
number | null
discount_percentage
number | null
currency
string | null
image
string | null
key_specs
string[]
rating
number | null
rating_count
integer | null
review_count
integer | null