# Flipkart Sports Shoes Data Extractor

**Use case:** 

Retrieve detailed product information for sports shoes on Flipkart. Get prices, customer reviews, and images in structured data format.

## Input

```json
{
  "startUrl": "https://www.flipkart.com/mens-footwear/sports-shoes/pr?sid=osp%2Ccil%2C1cu&otracker=nmenu_sub_Men_0_Sports+Shoes&sort=price_asc",
  "results_wanted": 100,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "item_id": {
    "label": "Item ID",
    "format": "text"
  },
  "listing_id": {
    "label": "Listing ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "analytics_category": {
    "label": "Analytics Category",
    "format": "text"
  },
  "analytics_sub_category": {
    "label": "Analytics Sub Category",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "price_text": {
    "label": "Price Text",
    "format": "text"
  },
  "original_price": {
    "label": "Original Price",
    "format": "number"
  },
  "original_price_text": {
    "label": "Original Price Text",
    "format": "text"
  },
  "discount_amount": {
    "label": "Discount Amount",
    "format": "number"
  },
  "discount_percent": {
    "label": "Discount %",
    "format": "number"
  },
  "discount_text": {
    "label": "Discount Text",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "rating_count": {
    "label": "Rating Count",
    "format": "number"
  },
  "review_count": {
    "label": "Review Count",
    "format": "number"
  },
  "rating_breakdown": {
    "label": "Rating Breakdown",
    "format": "json"
  },
  "availability_status": {
    "label": "Availability Status",
    "format": "text"
  },
  "is_available": {
    "label": "Is Available",
    "format": "boolean"
  },
  "buyability_intent": {
    "label": "Buyability Intent",
    "format": "text"
  },
  "is_flipkart_advantage": {
    "label": "Flipkart Advantage",
    "format": "boolean"
  },
  "swatch_available": {
    "label": "Swatch Available",
    "format": "boolean"
  },
  "key_specs": {
    "label": "Key Specs",
    "format": "json"
  },
  "specifications": {
    "label": "Specifications",
    "format": "json"
  },
  "warranty_summary": {
    "label": "Warranty Summary",
    "format": "text"
  },
  "market_place": {
    "label": "Market Place",
    "format": "text"
  },
  "image_url": {
    "label": "Image URL",
    "format": "link"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "fetched_at": {
    "label": "Fetched At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Flipkart Product Scraper 🛒](https://apify.com/shahidirfan/flipkart-product-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shahidirfan/flipkart-product-scraper) to learn more, explore other use cases, and run it yourself.