{
  "openapi": "3.0.1",
  "info": {
    "title": "Getaround Cars Scraper",
    "description": "Scrape Getaround car sharing listings: photo, make, model, year, day and hour price, rating, fuel, gearbox, seats. Export to CSV, Excel, JSON or XML.",
    "version": "0.1",
    "x-build-id": "zRnOSdyfD9nUjeA9N"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/parseforge~getaround-cars-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-parseforge-getaround-cars-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/parseforge~getaround-cars-scraper/runs": {
      "post": {
        "operationId": "runs-sync-parseforge-getaround-cars-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/parseforge~getaround-cars-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-parseforge-getaround-cars-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": {
          "citySlugs": {
            "title": "Getaround cities",
            "type": "array",
            "description": "Cities Getaround publishes a market page for. Coordinates come from Getaround's own city pages, so every entry is a live search.",
            "items": {
              "type": "string",
              "enum": [
                "aix-en-provence",
                "ajaccio",
                "avignon",
                "bastia",
                "bayonne",
                "biarritz",
                "bordeaux",
                "lyon",
                "marseille",
                "montpellier",
                "nice",
                "nimes",
                "paris",
                "rennes",
                "toulouse",
                "alicante",
                "barcelona",
                "ibiza",
                "madrid",
                "malaga",
                "palma-de-mallorca",
                "santa-cruz-de-tenerife",
                "sevilla",
                "valencia",
                "brussels",
                "charleroi",
                "liege",
                "alesund",
                "bergen",
                "bodo",
                "gardermoen",
                "leknes",
                "narvik",
                "oslo",
                "stavanger",
                "svolvaer",
                "tromso",
                "trondheim",
                "vienna",
                "berlin",
                "munich"
              ],
              "enumTitles": [
                "Aix-en-Provence (France)",
                "Ajaccio (France)",
                "Avignon (France)",
                "Bastia (France)",
                "Bayonne (France)",
                "Biarritz (France)",
                "Bordeaux (France)",
                "Lyon (France)",
                "Marseille (France)",
                "Montpellier (France)",
                "Nice (France)",
                "Nimes (France)",
                "Paris (France)",
                "Rennes (France)",
                "Toulouse (France)",
                "Alicante (Spain)",
                "Barcelona (Spain)",
                "Ibiza (Spain)",
                "Madrid (Spain)",
                "Malaga (Spain)",
                "Palma de Mallorca (Spain)",
                "Santa Cruz de Tenerife (Spain)",
                "Sevilla (Spain)",
                "Valencia (Spain)",
                "Brussels (Belgium)",
                "Charleroi (Belgium)",
                "Liege (Belgium)",
                "Alesund (Norway)",
                "Bergen (Norway)",
                "Bodo (Norway)",
                "Gardermoen (Norway)",
                "Leknes (Norway)",
                "Narvik (Norway)",
                "Oslo (Norway)",
                "Stavanger (Norway)",
                "Svolvaer (Norway)",
                "Tromso (Norway)",
                "Trondheim (Norway)",
                "Vienna (Austria)",
                "Berlin (Germany)",
                "Munich (Germany)"
              ]
            }
          },
          "locationQueries": {
            "title": "Custom coordinates",
            "type": "array",
            "description": "Any point Getaround covers, as \"latitude,longitude\" and an optional label: \"50.62925,3.057256,Lille\". Use this for towns, airports, neighbourhoods or a grid of points over a large city.",
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "Getaround search or city URLs",
            "type": "array",
            "description": "Paste a getaround.com/search?... URL straight from your browser, or a getaround.com/car-rental/<city> page. Search URLs keep the filters you set on the site.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "maxItems": {
            "title": "Max Items",
            "minimum": 1,
            "maximum": 1000000,
            "type": "integer",
            "description": "Free users: Limited to 10 items (preview). Paid users: Optional, max 1,000,000"
          },
          "startDate": {
            "title": "Pickup date",
            "type": "string",
            "description": "Pickup date as YYYY-MM-DD, for example 2026-10-15. Getaround accepts bookings up to three months ahead."
          },
          "endDate": {
            "title": "Return date",
            "type": "string",
            "description": "Return date as YYYY-MM-DD. Both dates must be set for the availability filter to apply. Maximum rental length on Getaround is 30 days."
          },
          "instantBookingOnly": {
            "title": "Instant booking only",
            "type": "boolean",
            "description": "Keep only cars you can book without waiting for the owner to approve.",
            "default": false
          },
          "pickupMethod": {
            "title": "Pickup method",
            "enum": [
              "getaround_connect",
              "meet_owner"
            ],
            "type": "string",
            "description": "Getaround Connect cars open with the app, Meet owner cars need a key handover."
          },
          "carTypes": {
            "title": "Vehicle type",
            "type": "array",
            "description": "Body styles Getaround filters on. Several types can be combined.",
            "items": {
              "type": "string",
              "enum": [
                "city",
                "sedan",
                "suv",
                "four_four",
                "family",
                "minibus",
                "utility",
                "coupe",
                "cabriolet",
                "campervan",
                "antique"
              ],
              "enumTitles": [
                "City",
                "Sedan",
                "SUV",
                "4x4",
                "Family",
                "Minibus",
                "Commercial",
                "Coupe",
                "Convertible",
                "Campervan",
                "Antique"
              ]
            }
          },
          "makes": {
            "title": "Car make",
            "type": "array",
            "description": "Makes Getaround exposes as a search filter.",
            "items": {
              "type": "string",
              "enum": [
                "alfa-romeo",
                "audi",
                "bmw",
                "chevrolet",
                "chrysler",
                "dacia",
                "dodge",
                "fiat",
                "ford",
                "honda",
                "hyundai",
                "jeep",
                "kia",
                "land-rover",
                "lexus",
                "mazda",
                "mercedes",
                "mini",
                "mitsubishi",
                "nissan",
                "opel",
                "seat",
                "skoda",
                "smart",
                "suzuki",
                "tesla",
                "toyota",
                "volkswagen",
                "volvo"
              ],
              "enumTitles": [
                "Alfa-Romeo",
                "Audi",
                "BMW",
                "Chevrolet",
                "Chrysler",
                "Dacia",
                "Dodge",
                "Fiat",
                "Ford",
                "Honda",
                "Hyundai",
                "Jeep",
                "Kia",
                "Land-Rover",
                "Lexus",
                "Mazda",
                "Mercedes-Benz",
                "Mini",
                "Mitsubishi",
                "Nissan",
                "Opel",
                "Seat",
                "Skoda",
                "Smart",
                "Suzuki",
                "Tesla",
                "Toyota",
                "Volkswagen",
                "Volvo"
              ]
            }
          },
          "fuelTypes": {
            "title": "Fuel type",
            "type": "array",
            "description": "Electric, hybrid or combustion. Several can be combined.",
            "items": {
              "type": "string",
              "enum": [
                "electric",
                "hybrid",
                "combustion"
              ],
              "enumTitles": [
                "Electric",
                "Hybrid",
                "Combustion"
              ]
            }
          },
          "transmission": {
            "title": "Transmission",
            "enum": [
              "manual",
              "automatic"
            ],
            "type": "string",
            "description": "Keep only manual or only automatic cars."
          },
          "minSeats": {
            "title": "Minimum seats",
            "enum": [
              "2",
              "3",
              "4",
              "5",
              "6",
              "7",
              "8",
              "9"
            ],
            "type": "string",
            "description": "Smallest seat count you will accept."
          },
          "features": {
            "title": "Features",
            "type": "array",
            "description": "Equipment Getaround filters on, such as a baby seat or a bike rack.",
            "items": {
              "type": "string",
              "enum": [
                "air_conditioning",
                "gps",
                "apple_carplay",
                "android_auto",
                "cruise_control",
                "baby_seat",
                "bike_rack",
                "roof_box",
                "snow_tire",
                "chains",
                "four_wheel_drive"
              ],
              "enumTitles": [
                "Air conditioning",
                "GPS",
                "Apple CarPlay",
                "Android Auto",
                "Cruise control",
                "Baby seat",
                "Bike rack",
                "Roof box",
                "Snow tires",
                "Snow chains",
                "Four-wheel drive"
              ]
            }
          },
          "recentOnly": {
            "title": "New cars only",
            "type": "boolean",
            "description": "Keep only cars less than five years old.",
            "default": false
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "Apify proxy settings.",
            "default": {
              "useApifyProxy": false
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}