{
  "openapi": "3.0.1",
  "info": {
    "title": "GoMore Scraper",
    "description": "Scrape peer-to-peer car rentals from gomore.dk. Filter by city, dates, make, price, fuel, and more, or paste a GoMore search URL. Returns daily price, location, keyless/instant booking flags, and photos.",
    "version": "0.1",
    "x-build-id": "BWBf7BzQNQRXengY8"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/dadhalfdev~gomore-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-dadhalfdev-gomore-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/dadhalfdev~gomore-scraper/runs": {
      "post": {
        "operationId": "runs-sync-dadhalfdev-gomore-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/dadhalfdev~gomore-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-dadhalfdev-gomore-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": {
          "input_url": {
            "title": "Input URL",
            "type": "string",
            "description": "Optional. Paste a GoMore search or city URL (e.g. https://gomore.dk/biludlejning/koebenhavn) to override the filters below."
          },
          "location": {
            "title": "Location",
            "enum": [
              "",
              "koebenhavn",
              "noerrebro",
              "vesterbro",
              "oesterbro",
              "frederiksberg",
              "amager",
              "valby",
              "vanloese",
              "ballerup",
              "aarhus",
              "odense",
              "aalborg",
              "esbjerg",
              "randers",
              "kolding",
              "horsens",
              "vejle",
              "viborg",
              "silkeborg",
              "herning",
              "roskilde",
              "hilleroed",
              "helsingoer",
              "koege",
              "holbaek",
              "fredericia",
              "haderslev",
              "soenderborg",
              "svendborg",
              "slagelse",
              "naestved",
              "hjoerring",
              "nyborg",
              "skive",
              "bornholm",
              "mallorca",
              "barcelona",
              "alicante",
              "malaga"
            ],
            "type": "string",
            "description": "City on GoMore. Leave as All of Denmark for a nationwide search. Ignored when input_url is set.",
            "default": ""
          },
          "query": {
            "title": "Text search",
            "type": "string",
            "description": "Optional free-text filter as on GoMore (e.g. Tesla Model Y). Ignored when input_url is set."
          },
          "make": {
            "title": "Make",
            "enum": [
              "",
              "Aiways",
              "Alfa Romeo",
              "Audi",
              "Benimar",
              "BMW",
              "Burstner",
              "Byd",
              "Chevrolet",
              "Citroen",
              "Cupra",
              "Dacia",
              "DS",
              "Fiat",
              "Ford",
              "Honda",
              "Hymer",
              "Hyundai",
              "Iveco",
              "Jaguar",
              "Jeep",
              "Jiayuan",
              "Kia",
              "Maxus",
              "Mazda",
              "Mercedes",
              "Mercedes-AMG",
              "MG",
              "MINI",
              "Mitsubishi",
              "Navor",
              "Nissan",
              "Opel",
              "Peugeot",
              "Polestar",
              "Porsche",
              "Renault",
              "Seat",
              "Skoda",
              "SMART",
              "Subaru",
              "Suzuki",
              "Tesla",
              "Toyota",
              "Volkswagen",
              "Volvo",
              "Xpeng",
              "Zeekr"
            ],
            "type": "string",
            "description": "Car brand as on GoMore. Leave empty for all makes. Ignored when input_url is set.",
            "default": ""
          },
          "pickup_date": {
            "title": "Pickup date",
            "type": "string",
            "description": "Optional pickup date (YYYY-MM-DD). Ignored when input_url is set."
          },
          "return_date": {
            "title": "Return date",
            "type": "string",
            "description": "Optional return date (YYYY-MM-DD). Ignored when input_url is set."
          },
          "radius_meters": {
            "title": "Radius (meters)",
            "minimum": 0,
            "type": "integer",
            "description": "Max distance from the location. Typical values: 500, 1000, 2000, 3000, 5000. Leave empty for any distance. Ignored when input_url is set."
          },
          "price_min": {
            "title": "Minimum price per day (DKK)",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum daily rate in DKK. Ignored when input_url is set."
          },
          "price_max": {
            "title": "Maximum price per day (DKK)",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum daily rate in DKK. Ignored when input_url is set."
          },
          "car_type": {
            "title": "Car type",
            "enum": [
              "",
              "city",
              "sedan",
              "stationcar",
              "suv",
              "van",
              "minibus",
              "coupe",
              "cabriolet",
              "campervan"
            ],
            "type": "string",
            "description": "Body type as on GoMore. Ignored when input_url is set.",
            "default": ""
          },
          "fuel_type": {
            "title": "Fuel type",
            "enum": [
              "",
              "electricity",
              "hybrid",
              "gasoline",
              "diesel"
            ],
            "type": "string",
            "description": "Fuel filter. Ignored when input_url is set.",
            "default": ""
          },
          "transmission": {
            "title": "Transmission",
            "enum": [
              "",
              "automatic",
              "manual"
            ],
            "type": "string",
            "description": "Gearbox filter. Ignored when input_url is set.",
            "default": ""
          },
          "keyless": {
            "title": "Keyless only",
            "type": "boolean",
            "description": "Only cars that unlock from the app. Ignored when input_url is set.",
            "default": false
          },
          "instant_booking": {
            "title": "Instant booking only",
            "type": "boolean",
            "description": "Only cars with instant booking (Kvikbooking). Ignored when input_url is set.",
            "default": false
          },
          "delivery": {
            "title": "Delivery only",
            "type": "boolean",
            "description": "Only cars that can be delivered. Ignored when input_url is set.",
            "default": false
          },
          "pets_welcome": {
            "title": "Pets welcome",
            "type": "boolean",
            "description": "Only cars that allow pets. Ignored when input_url is set.",
            "default": false
          },
          "more_than_five_seats": {
            "title": "More than 5 seats",
            "type": "boolean",
            "description": "Only cars with 6+ seats. Ignored when input_url is set.",
            "default": false
          },
          "sort_by": {
            "title": "Sort by",
            "enum": [
              "recommended",
              "distance",
              "price_asc"
            ],
            "type": "string",
            "description": "Result order. Ignored when input_url is set.",
            "default": "recommended"
          },
          "max_listings": {
            "title": "Maximum number of listings",
            "minimum": 1,
            "maximum": 2000,
            "type": "integer",
            "description": "How many rental listings to return (1–2000).",
            "default": 50
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}