{
  "openapi": "3.0.1",
  "info": {
    "title": "SimpleTire Scraper",
    "description": "Scrape SimpleTire.com - search tires by size (width/ratio/diameter), by vehicle (year/make/model), or by brand. Get price, brand, rating, UTQG, warranty, and performance scores with no login or proxy required.",
    "version": "1.0",
    "x-build-id": "D46l9YVIGpmGO7rV6"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/crawlerbros~simpletire-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-crawlerbros-simpletire-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/crawlerbros~simpletire-scraper/runs": {
      "post": {
        "operationId": "runs-sync-crawlerbros-simpletire-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/crawlerbros~simpletire-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-crawlerbros-simpletire-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",
        "required": [
          "mode"
        ],
        "properties": {
          "mode": {
            "title": "Mode",
            "enum": [
              "byTireSize",
              "byVehicle",
              "byBrand"
            ],
            "type": "string",
            "description": "How to search for tires.",
            "default": "byTireSize"
          },
          "width": {
            "title": "Tire width in mm (mode=byTireSize)",
            "enum": [
              "125",
              "135",
              "145",
              "155",
              "165",
              "175",
              "185",
              "195",
              "205",
              "215",
              "225",
              "235",
              "245",
              "255",
              "265",
              "275",
              "285",
              "295",
              "305",
              "315",
              "325",
              "335",
              "345",
              "355"
            ],
            "type": "string",
            "description": "Tire section width in millimeters, e.g. 225 in 225/45R17.",
            "default": "225"
          },
          "ratio": {
            "title": "Aspect ratio / profile (mode=byTireSize)",
            "enum": [
              "25",
              "30",
              "35",
              "40",
              "45",
              "50",
              "55",
              "60",
              "65",
              "70",
              "75",
              "80",
              "85"
            ],
            "type": "string",
            "description": "Tire aspect (profile) ratio, e.g. 45 in 225/45R17.",
            "default": "45"
          },
          "diameter": {
            "title": "Rim diameter in inches (mode=byTireSize)",
            "enum": [
              "13",
              "14",
              "15",
              "16",
              "17",
              "18",
              "19",
              "20",
              "21",
              "22",
              "24",
              "26"
            ],
            "type": "string",
            "description": "Wheel rim diameter in inches, e.g. 17 in 225/45R17.",
            "default": "17"
          },
          "sizeBrandFilter": {
            "title": "Brand filter (optional, mode=byTireSize)",
            "enum": [
              "",
              "bridgestone",
              "continental",
              "continental-mitas",
              "cooper",
              "dunlop",
              "falken",
              "federal",
              "firestone",
              "general",
              "goodyear",
              "gt-radial",
              "hankook",
              "hercules",
              "ironman",
              "kelly",
              "kenda",
              "kumho",
              "landsail",
              "laufenn",
              "lexani",
              "maxxis",
              "mastercraft",
              "mickey-thompson",
              "milestar",
              "mrf",
              "multi-mile",
              "national",
              "nexen",
              "nitto",
              "nokian",
              "pirelli",
              "roadmaster",
              "sailun",
              "starfire",
              "sumitomo",
              "toyo",
              "triangle",
              "westlake",
              "yokohama",
              "atturo",
              "accelera"
            ],
            "type": "string",
            "description": "Narrow the tire-size search to a single brand. Leave blank to see all brands for that size.",
            "default": ""
          },
          "make": {
            "title": "Vehicle make (mode=byVehicle)",
            "enum": [
              "",
              "acura",
              "alfa-romeo",
              "am-general",
              "american-motors",
              "aston-martin",
              "audi",
              "avanti",
              "bentley",
              "bertone",
              "bmw",
              "buick",
              "cadillac",
              "checker",
              "chevrolet",
              "chrysler",
              "coda",
              "daewoo",
              "daihatsu",
              "delorean",
              "dodge",
              "eagle",
              "ferrari",
              "fiat",
              "fisker",
              "ford",
              "freightliner",
              "genesis",
              "geo",
              "gmc",
              "honda",
              "hummer",
              "hyundai",
              "ineos",
              "infiniti",
              "international",
              "isuzu",
              "jaguar",
              "jeep",
              "karma",
              "kia",
              "lamborghini",
              "lancia",
              "land-rover",
              "lexus",
              "lincoln",
              "lordstown-motors",
              "lotus",
              "lucid",
              "maserati",
              "maybach",
              "mazda",
              "mclaren",
              "mercedes-benz",
              "mercury",
              "merkur",
              "mg",
              "mini",
              "mitsubishi",
              "mobility-ventures",
              "nissan",
              "oldsmobile",
              "panoz",
              "peugeot",
              "pininfarina",
              "plymouth",
              "polestar",
              "pontiac",
              "porsche",
              "ram",
              "renault",
              "rivian",
              "rolls-royce",
              "saab",
              "saleen",
              "saturn",
              "scion",
              "smart",
              "srt",
              "sterling",
              "subaru",
              "suzuki",
              "tesla",
              "toyota",
              "triumph",
              "vinfast",
              "volkswagen",
              "volvo",
              "vpg",
              "yugo"
            ],
            "type": "string",
            "description": "Vehicle manufacturer.",
            "default": ""
          },
          "model": {
            "title": "Vehicle model (mode=byVehicle)",
            "type": "string",
            "description": "Vehicle model name, e.g. `Civic`, `Model Y`, `F-150`. The model set is too large to enumerate reliably per-make, so this is free text — use the exact model name as shown on SimpleTire.",
            "default": ""
          },
          "year": {
            "title": "Vehicle model year (mode=byVehicle)",
            "minimum": 1980,
            "maximum": 2027,
            "type": "integer",
            "description": "Model year.",
            "default": 2022
          },
          "brand": {
            "title": "Tire brand (mode=byBrand)",
            "enum": [
              "bridgestone",
              "continental",
              "continental-mitas",
              "cooper",
              "dunlop",
              "falken",
              "federal",
              "firestone",
              "general",
              "goodyear",
              "gt-radial",
              "hankook",
              "hercules",
              "ironman",
              "kelly",
              "kenda",
              "kumho",
              "landsail",
              "laufenn",
              "lexani",
              "maxxis",
              "mastercraft",
              "mickey-thompson",
              "milestar",
              "mrf",
              "multi-mile",
              "national",
              "nexen",
              "nitto",
              "nokian",
              "pirelli",
              "roadmaster",
              "sailun",
              "starfire",
              "sumitomo",
              "toyo",
              "triangle",
              "westlake",
              "yokohama",
              "atturo",
              "accelera"
            ],
            "type": "string",
            "description": "Browse all tires SimpleTire carries from this brand.",
            "default": "goodyear"
          },
          "minRating": {
            "title": "Minimum customer rating",
            "minimum": 0,
            "maximum": 5,
            "type": "integer",
            "description": "Drop tires with an average customer rating below this (1-5 stars)."
          },
          "minPrice": {
            "title": "Minimum price (USD, per tire)",
            "minimum": 0,
            "maximum": 100000,
            "type": "integer",
            "description": "Drop tires priced below this amount in USD."
          },
          "maxPrice": {
            "title": "Maximum price (USD, per tire)",
            "minimum": 0,
            "maximum": 100000,
            "type": "integer",
            "description": "Drop tires priced above this amount in USD."
          },
          "category": {
            "title": "Category contains",
            "type": "string",
            "description": "Keep only tires whose category/type text contains this (case-insensitive), e.g. `all-season`, `performance`, `winter`, `truck`, `summer`.",
            "default": ""
          },
          "runFlatOnly": {
            "title": "Run-flat tires only",
            "type": "boolean",
            "description": "Only emit tires marked as run-flat.",
            "default": false
          },
          "maxItems": {
            "title": "Max items",
            "minimum": 1,
            "maximum": 300,
            "type": "integer",
            "description": "Hard cap on emitted records. Note: mode=byBrand reads a curated subset of tires embedded in the brand page (typically 10-20 lines) rather than the full paginated SKU catalog; mode=byTireSize/byVehicle are scoped to a specific size/vehicle so this ceiling is rarely reached there.",
            "default": 30
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}