Search listings and product details
POST /sellers/listings/v3/product/search
Retrieve listings and product details for the specified search criteria. At a time, a maximum of 20 listings are returned per batch based on the internalState filter. Use batchNo for pagination: start with 0 for the first batch; subsequent batches use incrementing values to fetch the next set of up to 20 listings.
- application/json
Request Body required
- batchNo integer required
Batch index for pagination. Use 0 for the first batch; increment for subsequent batches.
- internalState string required
Possible values: [
ACTIVE,INACTIVE,READY_FOR_ACTIVATION,ARCHIVED,INACTIVATED_BY_FLIPKART]Filter listings by internal state. Up to 20 listings returned per batch.
- searchText string
Optional text to filter or search listings.
- 200
- 400
- 401
- 500
Successfully fetched listings.
- application/json
- Schema
- Example (from schema)
Schema
- totalListingsCount integer
Total number of listings matching the internal state and search criteria.
listingData object[]
Array of listing objects (up to 20 per batch).
Array [listingId stringFlipkart listing identifier.
sellerId stringSeller identifier.
productId stringFlipkart product identifier.
sku stringSeller SKU for the listing.
status stringPossible values: [
ACTIVE,INACTIVE]Listing status.
product_name stringProduct title.
product_image_url stringURL of the product image.
vertical stringProduct vertical.
product_description object
Product description containing price and dimension details
ssp numberSeller Selling Price.
esp numberEffective Selling Price (may be null).
mrp numberMaximum Retail Price.
dimensions object
Product dimensions
breadth numberBreadth in cm.
length numberLength in cm.
height numberHeight in cm.
weight numberWeight in kg.
]
{
"totalListingsCount": "<totalListingsCount for state>",
"listingData": [
{
"listingId": "<listing-id>",
"sellerId": "<seller-id>",
"productId": "<product-id>",
"sku": "<sku>",
"status": "ACTIVE|INACTIVE",
"product_name": "<product_title>",
"product_image_url": "<product_image_url>",
"vertical": "<vertical>",
"product_description": {
"ssp": 0,
"esp": 0,
"mrp": 0,
"dimensions": {
"breadth": 0,
"length": 0,
"height": 0,
"weight": 0
}
}
}
]
}
Bad Request (Malformed payload or missing mandatory headers).
Client unauthorized.
Internal Server Error.