{
  "openapi": "3.0.1",
  "info": {
    "title": "Flipkart Seller Scraper",
    "description": "An advanced, high-speed e-commerce scraper designed for real-time price monitoring and competitor intelligence. Extracts product titles, current pricing, discounts, stock availability, specifications, images, and seller ratings from Flipkart Seller. Perfect for inventory tracking, drop-shipping r...",
    "version": "1.2",
    "x-build-id": "0z2Emp1OltOf2Iwud"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/codingfrontend~flipkart-seller-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-codingfrontend-flipkart-seller-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/codingfrontend~flipkart-seller-scraper/runs": {
      "post": {
        "operationId": "runs-sync-codingfrontend-flipkart-seller-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/codingfrontend~flipkart-seller-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-codingfrontend-flipkart-seller-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "mode": {
            "title": "Input mode",
            "enum": [
              "productUrl",
              "sellersPageUrl",
              "searchQuery",
              "searchUrl"
            ],
            "type": "string",
            "description": "Choose the public Flipkart surface used to locate seller offers.",
            "default": "sellersPageUrl"
          },
          "productUrls": {
            "title": "Product URLs",
            "maxItems": 10,
            "type": "array",
            "description": "One to 10 credential-free HTTPS Flipkart product URLs.",
            "items": {
              "type": "string",
              "pattern": "^https://(?:[^./]+\\.)*flipkart\\.com/.*/p/"
            }
          },
          "sellersPageUrls": {
            "title": "All Sellers URLs",
            "maxItems": 10,
            "type": "array",
            "description": "One to 10 public /sellers URLs containing a pid parameter.",
            "items": {
              "type": "string",
              "pattern": "^https://(?:[^./]+\\.)*flipkart\\.com/sellers\\?"
            }
          },
          "query": {
            "title": "Search query",
            "minLength": 1,
            "maxLength": 100,
            "type": "string",
            "description": "One public Flipkart search phrase."
          },
          "queries": {
            "title": "Search queries",
            "maxItems": 5,
            "type": "array",
            "description": "Up to five public Flipkart search phrases.",
            "items": {
              "type": "string",
              "minLength": 1,
              "maxLength": 100
            }
          },
          "searchUrls": {
            "title": "Search URLs",
            "maxItems": 5,
            "type": "array",
            "description": "Up to five credential-free HTTPS Flipkart /search URLs.",
            "items": {
              "type": "string",
              "pattern": "^https://(?:[^./]+\\.)*flipkart\\.com/search"
            }
          },
          "maxPages": {
            "title": "Maximum search pages",
            "minimum": 1,
            "maximum": 3,
            "type": "integer",
            "description": "Number of public search pages to inspect for each query or URL.",
            "default": 1
          },
          "startPage": {
            "title": "Starting page",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "First public search page number.",
            "default": 1
          },
          "maxItems": {
            "title": "Maximum seller offers",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Maximum number of complete seller-and-price records stored.",
            "default": 20
          },
          "requestDelayMs": {
            "title": "Delay before each navigation (ms)",
            "minimum": 0,
            "maximum": 5000,
            "type": "integer",
            "description": "Fixed pacing delay before each public navigation.",
            "default": 500
          },
          "navigationTimeoutSecs": {
            "title": "Navigation timeout (seconds)",
            "minimum": 10,
            "maximum": 90,
            "type": "integer",
            "description": "Maximum time for each public page navigation.",
            "default": 45
          },
          "selectorTimeoutSecs": {
            "title": "Seller-row timeout (seconds)",
            "minimum": 1,
            "maximum": 15,
            "type": "integer",
            "description": "Maximum wait for the public seller-row selector.",
            "default": 8
          },
          "postNavigationWaitMs": {
            "title": "Post-navigation wait (ms)",
            "minimum": 0,
            "maximum": 3000,
            "type": "integer",
            "description": "Bounded wait for public client-rendered content after navigation.",
            "default": 800
          },
          "includeDetail": {
            "title": "Include product detail",
            "type": "boolean",
            "description": "Visit the public product page for bounded product metadata.",
            "default": false
          },
          "includeMedia": {
            "title": "Include the public product image",
            "type": "boolean",
            "description": "Include only the public product image URL disclosed by page metadata.",
            "default": false
          },
          "includeRatings": {
            "title": "Include visible ratings",
            "type": "boolean",
            "description": "Extract source-backed product and seller ratings when visible.",
            "default": true
          },
          "filters": {
            "title": "Offer filters",
            "type": "object",
            "description": "Optional filters that require source-backed public values.",
            "properties": {
              "minSellerRating": {
                "title": "Minimum seller rating",
                "description": "Require at least this visible seller rating.",
                "type": "number",
                "minimum": 0,
                "maximum": 5
              },
              "minProductRating": {
                "title": "Minimum product rating",
                "description": "Require at least this visible product rating.",
                "type": "number",
                "minimum": 0,
                "maximum": 5
              },
              "minDiscountPercent": {
                "title": "Minimum discount percent",
                "description": "Require at least this source-backed or calculated discount.",
                "type": "number",
                "minimum": 0,
                "maximum": 100
              },
              "requireFlipkartAssured": {
                "title": "Require Flipkart Assured",
                "description": "Keep only rows with a visible Flipkart Assured badge.",
                "type": "boolean",
                "default": false
              },
              "sellerNames": {
                "title": "Seller names",
                "description": "Keep only case-insensitive exact public seller names.",
                "type": "array",
                "editor": "stringList",
                "items": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 100
                },
                "maxItems": 20
              }
            },
            "additionalProperties": false
          },
          "pincode": {
            "title": "Reference pincode",
            "minimum": 100000,
            "maximum": 999999,
            "type": "integer",
            "description": "Recorded only as output context; it is not submitted to Flipkart."
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Optional explicit Apify Proxy configuration. No proxy group or country is selected by default."
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}