{
  "openapi": "3.0.1",
  "info": {
    "title": "10times Events Scraper — Trade Shows & Conferences",
    "description": "Scrape trade shows, conferences, exhibitions, and workshops from 10times.com — 59 data points per event including organizer contacts, venue, visitor estimates, exhibitor counts, and schedules. Pay-per-event pricing, ~15% cheaper than competitors. No 10times account required.",
    "version": "0.1",
    "x-build-id": "RB2iTDjUXi5HXg4Gh"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/prodiger~tentimes-events-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-prodiger-tentimes-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/prodiger~tentimes-events-scraper/runs": {
      "post": {
        "operationId": "runs-sync-prodiger-tentimes-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/prodiger~tentimes-events-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-prodiger-tentimes-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": {
          "city": {
            "title": "City",
            "type": "string",
            "description": "City name (e.g. 'Berlin, Germany') or numeric 10times city ID. When set, overrides 'location' and 'country'."
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "Custom location: city name, 'City, Country', or coordinates 'lat,lng'. Ignored if 'city' is set."
          },
          "country": {
            "title": "Country",
            "type": "string",
            "description": "ISO country code (e.g. 'US', 'DE') or 'WW' for worldwide. Used when 'city' is not set.",
            "default": "WW"
          },
          "query": {
            "title": "Search query",
            "type": "string",
            "description": "Text search for event names and descriptions (e.g. 'fintech', 'sustainable packaging')."
          },
          "radius": {
            "title": "Radius (miles)",
            "minimum": 0,
            "maximum": 5000,
            "type": "integer",
            "description": "Search radius in miles when 'location' is a coordinate pair 'lat,lng'.",
            "default": 50
          },
          "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": "10times industry ID. Common: 156=IT & Technology, 146=Banking & Finance, 27=Medical & Pharma, 108=Food & Beverages, 7=Building & Construction. See README for full list.",
            "default": ""
          },
          "eventType": {
            "title": "Event type",
            "enum": [
              "all",
              "tradeshow",
              "conference",
              "workshop"
            ],
            "type": "string",
            "description": "Filter by event type.",
            "default": "all"
          },
          "startDate": {
            "title": "Start date",
            "type": "string",
            "description": "Filter events starting from this date (YYYY-MM-DD)."
          },
          "endDate": {
            "title": "End date",
            "type": "string",
            "description": "Filter events ending before this date (YYYY-MM-DD)."
          },
          "onlineOnly": {
            "title": "Online events only",
            "type": "boolean",
            "description": "Include only virtual / online events.",
            "default": false
          },
          "sortBy": {
            "title": "Sort by",
            "enum": [
              "date",
              "follows",
              "score",
              "name",
              "distance"
            ],
            "type": "string",
            "description": "Sort field.",
            "default": "date"
          },
          "sortType": {
            "title": "Sort order",
            "enum": [
              "asc",
              "desc"
            ],
            "type": "string",
            "description": "Sort direction.",
            "default": "asc"
          },
          "maxItems": {
            "title": "Max events",
            "minimum": 0,
            "maximum": 100000,
            "type": "integer",
            "description": "Maximum number of events to scrape. 0 = unlimited.",
            "default": 0
          },
          "excludeEditionIds": {
            "title": "Exclude edition IDs",
            "type": "array",
            "description": "List of editionId values to skip. Useful for recurring scrapes that need to avoid re-emitting events already captured in previous runs. Non-integer entries are dropped with a warning.",
            "default": []
          },
          "useResidentialProxy": {
            "title": "Use residential proxy",
            "type": "boolean",
            "description": "Switch from datacenter to residential proxy. Recommended when running large queries or experiencing blocks — 10times is Cloudflare-protected, so residential is the safer choice for high-volume scrapes.",
            "default": 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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}