{
  "openapi": "3.0.1",
  "info": {
    "title": "GetYourGuide",
    "description": "Scrape GetYourGuide tours & activities worldwide! 🌍 Support for 29 languages, 38 currencies, automatic affiliate link generation. Extract prices, ratings, reviews, photos & descriptions. Perfect for travel sites, agencies & affiliate marketers. Fast & reliable!",
    "version": "0.19",
    "x-build-id": "B55iov6INGSyJ9Mbo"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/vanderleicatanzaro~getyourguide/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-vanderleicatanzaro-getyourguide",
        "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/vanderleicatanzaro~getyourguide/runs": {
      "post": {
        "operationId": "runs-sync-vanderleicatanzaro-getyourguide",
        "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/vanderleicatanzaro~getyourguide/run-sync": {
      "post": {
        "operationId": "run-sync-vanderleicatanzaro-getyourguide",
        "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": [
          "searchMode",
          "partner_id"
        ],
        "properties": {
          "searchMode": {
            "title": "How do you want to search for activities?",
            "enum": [
              "city",
              "activityUrl"
            ],
            "type": "string",
            "description": "Choose the search mode that best fits your needs",
            "default": "activityUrl"
          },
          "city": {
            "title": "🏙️ City Name",
            "type": "string",
            "description": "Enter the city name you want to search (English works best). Examples: dubai, paris, tokyo",
            "default": "dubai"
          },
          "activityUrls": {
            "title": "🔗 Activity URLs",
            "type": "array",
            "description": "Add the complete URLs of activities you want to extract. Click 'Add' for each URL.",
            "default": [
              "https://www.getyourguide.com/dubai-l173/burj-khalifa-at-the-top-skip-the-line-ticket-t62524/"
            ],
            "items": {
              "type": "string"
            }
          },
          "limit": {
            "title": "How many activities to extract?",
            "minimum": 0,
            "maximum": 999,
            "type": "integer",
            "description": "Set the maximum number of activities. Use 0 (zero) to extract ALL activities found.",
            "default": 1
          },
          "extractionProfile": {
            "title": "Extraction Profile",
            "enum": [
              "minimal",
              "standard",
              "content",
              "full"
            ],
            "type": "string",
            "description": "Controls which fields are extracted. Use 'minimal' for price monitoring, 'standard' for affiliate catalogs, 'content' for travel guides, 'full' for complete data.",
            "default": "minimal"
          },
          "maxPhotos": {
            "title": "Max Photos per Activity",
            "minimum": 0,
            "maximum": 12,
            "type": "integer",
            "description": "Maximum number of photo URLs to extract per activity. Only applies to 'full' and 'content' profiles. Use 0 to skip photos entirely.",
            "default": 3
          },
          "partner_id": {
            "title": "Partner ID (Affiliate)",
            "type": "string",
            "description": "Your GetYourGuide partner/affiliate ID. Affiliate links will be generated automatically.",
            "default": "QOJ6RGE"
          },
          "language": {
            "title": "Content Language",
            "enum": [
              "en-US",
              "cs-CZ",
              "da-DK",
              "de-DE",
              "de-AT",
              "de-CH",
              "en-AU",
              "en-GB",
              "es-ES",
              "es-MX",
              "fr-FR",
              "it-IT",
              "hu-HU",
              "nl-NL",
              "no-NO",
              "pl-PL",
              "pt-PT",
              "pt-BR",
              "ro-RO",
              "fi-FI",
              "sv-SE",
              "tr-TR",
              "el-GR",
              "ru-RU",
              "ja-JP",
              "zh-CN",
              "zh-HK",
              "zh-TW",
              "ko-KR"
            ],
            "type": "string",
            "description": "Language in which activity information will be extracted (case-sensitive locale code)",
            "default": "en-US"
          },
          "currency": {
            "title": "Price Currency",
            "enum": [
              "USD",
              "EUR",
              "GBP",
              "BRL",
              "AED",
              "AUD",
              "BGN",
              "CAD",
              "CHF",
              "CLP",
              "CNY",
              "COP",
              "CZK",
              "DKK",
              "EGP",
              "HKD",
              "HUF",
              "IDR",
              "ILS",
              "INR",
              "JPY",
              "KRW",
              "MAD",
              "MXN",
              "MYR",
              "NOK",
              "NZD",
              "PHP",
              "PLN",
              "RON",
              "SEK",
              "SGD",
              "THB",
              "TRY",
              "UAH",
              "UYU",
              "VND",
              "ZAR"
            ],
            "type": "string",
            "description": "Currency in which prices will be displayed (ISO 4217 code)",
            "default": "USD"
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}