{
  "openapi": "3.0.1",
  "info": {
    "title": "10times Events Scraper",
    "description": "Scrape public 10times events by search filters or URLs. Export event names, dates, locations, organizers, categories, attendance signals, source links, and scrape metadata.",
    "version": "0.0",
    "x-build-id": "XFXdDCfmNMarQnBSD"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/maximedupre~10times-events-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-maximedupre-10times-events-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/maximedupre~10times-events-scraper/runs": {
      "post": {
        "operationId": "runs-sync-maximedupre-10times-events-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/maximedupre~10times-events-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-maximedupre-10times-events-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": {
          "target": {
            "title": "Target",
            "enum": [
              "search",
              "urls"
            ],
            "type": "string",
            "description": "Choose whether this run searches 10times or starts from specific 10times URLs.",
            "default": "search"
          },
          "startUrls": {
            "title": "10times URLs",
            "type": "array",
            "description": "Paste 10times event, listing, city, country, category, or search URLs for URL runs.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL",
                  "description": "A public 10times event, listing, city, country, category, or search URL."
                }
              }
            }
          },
          "query": {
            "title": "Search query",
            "type": "string",
            "description": "Search event names and descriptions, such as technology, packaging, healthcare, or fintech.",
            "default": "technology"
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "Enter a city, country, or coordinates such as New York, US or 40.7128,-74.0060.",
            "default": "New York, US"
          },
          "country": {
            "title": "Country",
            "enum": [
              "WW",
              "US",
              "GB",
              "DE",
              "FR",
              "ES",
              "IT",
              "NL",
              "AU",
              "CA",
              "JP",
              "IN",
              "BR",
              "MX",
              "CN",
              "SG"
            ],
            "type": "string",
            "description": "Choose a country for broad searches when Location is empty or country-level.",
            "default": "US"
          },
          "category": {
            "title": "Industry category",
            "enum": [
              "",
              "3",
              "5",
              "7",
              "13",
              "16",
              "19",
              "27",
              "30",
              "34",
              "37",
              "50",
              "53",
              "55",
              "61",
              "63",
              "80",
              "106",
              "107",
              "108",
              "113",
              "125",
              "128",
              "146",
              "150",
              "156",
              "158",
              "159",
              "160",
              "161"
            ],
            "type": "string",
            "description": "Choose a 10times industry category for generated searches.",
            "default": "156"
          },
          "categoryText": {
            "title": "Category text",
            "type": "string",
            "description": "Add industry wording such as SaaS, dental, packaging, cybersecurity, or food manufacturing.",
            "default": ""
          },
          "eventType": {
            "title": "Event type",
            "enum": [
              "all",
              "tradeshow",
              "conference",
              "workshop",
              "exhibition",
              "festival"
            ],
            "type": "string",
            "description": "Choose the event type for generated searches.",
            "default": "all"
          },
          "startDate": {
            "title": "Start date",
            "type": "string",
            "description": "Keep events starting on or after this date."
          },
          "endDate": {
            "title": "End date",
            "type": "string",
            "description": "Keep events ending on or before this date."
          },
          "onlineOnly": {
            "title": "Online events only",
            "type": "boolean",
            "description": "Collect virtual and online events only.",
            "default": false
          },
          "sortBy": {
            "title": "Sort events by",
            "enum": [
              "date",
              "score",
              "name",
              "followers",
              "distance"
            ],
            "type": "string",
            "description": "Set the order for generated search and listing targets.",
            "default": "date"
          },
          "sortOrder": {
            "title": "Sort order",
            "enum": [
              "asc",
              "desc"
            ],
            "type": "string",
            "description": "Choose ascending or descending order for generated searches.",
            "default": "asc"
          },
          "radiusMiles": {
            "title": "Radius",
            "minimum": 0,
            "maximum": 5000,
            "type": "integer",
            "description": "Search radius in miles when Location is a coordinate pair.",
            "default": 50
          },
          "cityIds": {
            "title": "10times city IDs",
            "type": "array",
            "description": "Add known 10times city IDs when you already have exact source IDs.",
            "items": {
              "type": "string",
              "minLength": 1
            }
          },
          "excludeEditionIds": {
            "title": "Skip edition IDs",
            "type": "array",
            "description": "Add edition IDs from earlier runs to collect newer matching events.",
            "items": {
              "type": "string",
              "minLength": 1
            }
          },
          "maxItems": {
            "title": "Event limit",
            "minimum": 1,
            "maximum": 100000,
            "type": "integer",
            "description": "Maximum number of events to save across the whole run.",
            "default": 25
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}