{
  "openapi": "3.0.1",
  "info": {
    "title": "Exhibition Scraper",
    "description": "Scrape exhibitor data from major trade shows and exhibitions worldwide. Extract company names, booth numbers, contact details, addresses, and social media links from 8+ exhibition websites including Embedded World, Euroshop, Boot Düsseldorf, and more.",
    "version": "1.0",
    "x-build-id": "obO2kgoQcOYm6fjQM"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/tacps126~exhibition-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-tacps126-exhibition-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/tacps126~exhibition-scraper/runs": {
      "post": {
        "operationId": "runs-sync-tacps126-exhibition-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/tacps126~exhibition-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-tacps126-exhibition-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",
        "required": [
          "exhibitions"
        ],
        "properties": {
          "exhibitions": {
            "title": "Exhibition",
            "enum": [
              "embedded-world",
              "euroshop",
              "boot-dusseldorf",
              "fruit-logistica",
              "internorga",
              "spielwarenmesse",
              "world-health-expo",
              "world-health-expo-labs",
              "world-shisha-dubai",
              "interclean-amsterdam",
              "interclean-china",
              "paper-arabia",
              "fibo-germany"
            ],
            "type": "string",
            "description": "Select an exhibition to scrape. Click the links below to preview the exhibitor data source:\n\n• **Embedded World** → [embedded-world.de/exhibitors](https://www.embedded-world.de/en/exhibitors-products/find-exhibitors)\n• **EuroShop** → [euroshop-tradefair.com/exhibitors](https://www.euroshop-tradefair.com/vis/v1/en/directory)\n• **boot Düsseldorf** → [boot.com/exhibitors](https://www.boot.com/vis/v1/en/search?f_type=profile)\n• **FRUIT LOGISTICA** → [fruitlogistica.com/exhibitors](https://online.fruitlogistica.com/showfloor/organizations)\n• **INTERNORGA** → [internorga.com/exhibitors](https://www.internorga.com/en/exhibit-visit/exhibitor-directory)\n• **Spielwarenmesse** → [spielwarenmesse.de/exhibitors](https://digital.spielwarenmesse.de/showfloor/organizations)\n• **World Health Expo** → [whxevents.com/exhibitors](https://connections.whxevents.com/event/whx-dubai-2026/exhibitors)\n• **World Health Expo Labs** → [whxevents.com/labs](https://connections.whxevents.com/event/whx-labs-dubai-2026/exhibitors)\n• **World Shisha Dubai** → [worldshishaevents.com/dubai](https://worldshishaevents.com/dubai/exhibitors)\n• **Interclean Amsterdam** → [intercleanshow.com/amsterdam](https://www.intercleanshow.com/amsterdam/exhibitor-list)\n• **Interclean China** → [intercleanshow.com/china](https://www.intercleanshow.com/china/exhibitors)\n• **Paper Arabia** → [paperarabia.com/exhibitors](https://www.paperarabia.com/exhibitor_list.php)\n• **FIBO Germany** → [fibo.com/exhibitors](https://www.fibo.com/germany/en-gb/exhibitor-directory.html)",
            "default": "embedded-world"
          },
          "maxResults": {
            "title": "Maximum Results",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Limit the number of exhibitors to scrape. Leave empty for all exhibitors."
          },
          "includeDetails": {
            "title": "Include Full Details",
            "type": "boolean",
            "description": "Fetch complete exhibitor profiles (slower but includes description, social links, categories). Disable for faster scraping of basic info only.",
            "default": true
          },
          "incrementalScrape": {
            "title": "Incremental Scrape",
            "type": "boolean",
            "description": "Only scrape new exhibitors since last run. Uses cached data to avoid re-scraping existing entries. Recommended for scheduled runs.",
            "default": false
          },
          "proxyConfiguration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "Configure proxy for requests. Recommended for large scrapes to avoid rate limiting."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}