{
  "openapi": "3.0.1",
  "info": {
    "title": "Event Sponsorship Prospecting",
    "description": "Find recurring event organizers and explicit, sourced sponsor/partner evidence for sponsorship prospecting.",
    "version": "0.1",
    "x-build-id": "cD3FGk6bGXbK9pnFB"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/aitorsm~event-sponsorship-prospecting/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-aitorsm-event-sponsorship-prospecting",
        "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/aitorsm~event-sponsorship-prospecting/runs": {
      "post": {
        "operationId": "runs-sync-aitorsm-event-sponsorship-prospecting",
        "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/aitorsm~event-sponsorship-prospecting/run-sync": {
      "post": {
        "operationId": "run-sync-aitorsm-event-sponsorship-prospecting",
        "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": {
          "keywords": {
            "title": "Keywords",
            "minLength": 1,
            "maxLength": 300,
            "type": "string",
            "description": "Search words, such as climate or startup networking."
          },
          "topic": {
            "title": "Topic",
            "minLength": 1,
            "maxLength": 300,
            "type": "string",
            "description": "Optional topic words added to the source keyword search."
          },
          "sourcePlatform": {
            "title": "Discovery platforms",
            "enum": [
              "auto",
              "eventbrite",
              "meetup",
              "both"
            ],
            "type": "string",
            "description": "Broad public discovery. Use Advanced for Luma or Posh organizer searches.",
            "default": "auto"
          },
          "city": {
            "title": "City",
            "minLength": 1,
            "maxLength": 300,
            "type": "string",
            "description": "Used for public discovery and as a case-insensitive filter when the source supplies this field."
          },
          "country": {
            "title": "Country",
            "minLength": 1,
            "maxLength": 300,
            "type": "string",
            "description": "Used for public discovery and as a case-insensitive filter when the source supplies this field. Use a two-letter country code for Meetup. Simple discovery defaults to US when omitted; inline/advanced filters have no default."
          },
          "category": {
            "title": "Category",
            "minLength": 1,
            "maxLength": 300,
            "type": "string",
            "description": "Used for public discovery and as a case-insensitive filter when the source supplies this field."
          },
          "dateFrom": {
            "title": "Event date from (inclusive)",
            "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
            "type": "string",
            "description": "Date from."
          },
          "dateTo": {
            "title": "Event date to (inclusive)",
            "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
            "type": "string",
            "description": "Date to."
          },
          "maxAccounts": {
            "title": "Max organizer accounts",
            "minimum": 1,
            "maximum": 200,
            "type": "integer",
            "description": "Max accounts.",
            "default": 25
          },
          "maxEvents": {
            "title": "Max event observations",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Max events.",
            "default": 200
          },
          "maxCostUsd": {
            "title": "Max PPE charges (USD)",
            "minimum": 0,
            "maximum": 100,
            "type": "number",
            "description": "Max cost usd.",
            "default": 5
          },
          "includeBusinessContacts": {
            "title": "Include public organizer business contacts",
            "type": "boolean",
            "description": "Off by default. Applies to organizer/company channels, not public People rows returned by selected sources.",
            "default": false
          },
          "maxPeoplePerEvent": {
            "title": "Max public people per event/account observation",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Maximum deduplicated public people rows emitted from one event or account observation.",
            "default": 50
          },
          "maxPeople": {
            "title": "Max public people per run",
            "minimum": 1,
            "maximum": 5000,
            "type": "integer",
            "description": "Maximum public people rows emitted for the full run.",
            "default": 1000
          },
          "refreshPolicy": {
            "title": "Refresh policy",
            "enum": [
              "missing-or-stale",
              "cache-only"
            ],
            "type": "string",
            "description": "Use fresh cached coverage first. Cache-only never collects from sources.",
            "default": "missing-or-stale"
          },
          "maxCacheAgeHours": {
            "title": "Maximum cache age (hours)",
            "minimum": 1,
            "maximum": 720,
            "type": "integer",
            "description": "Maximum age of fresh source observations.",
            "default": 168
          },
          "allowStaleOnError": {
            "title": "Allow stale fallback",
            "type": "boolean",
            "description": "Deliver marked, unbilled stale cache when refresh cannot complete, including cache-only and wait responses.",
            "default": true
          },
          "maxRefreshSeeds": {
            "title": "Maximum seeds to refresh",
            "minimum": 0,
            "maximum": 20,
            "type": "integer",
            "description": "Maximum leased seeds collected per run. Zero disables collection.",
            "default": 10
          },
          "seeds": {
            "title": "Advanced: source seeds",
            "minItems": 1,
            "maxItems": 20,
            "type": "array",
            "description": "Up to 20 searches and up to 40 source calls per run (Meetup searches events and groups). Each seed returns at most 100 observations.",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "properties": {
                "url": {
                  "type": "string",
                  "maxLength": 2048,
                  "title": "Url",
                  "description": "Url.",
                  "pattern": "^https?://"
                },
                "sourcePlatform": {
                  "type": "string",
                  "enum": [
                    "posh",
                    "eventbrite",
                    "luma",
                    "meetup",
                    "auto"
                  ],
                  "title": "Source platform",
                  "description": "Source platform."
                },
                "organizer": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "title": "Organizer",
                  "description": "Organizer."
                },
                "city": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "title": "City",
                  "description": "City."
                },
                "country": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "title": "Country",
                  "description": "Country."
                },
                "category": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "title": "Category",
                  "description": "Category."
                },
                "keywords": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "title": "Keywords",
                  "description": "Keywords."
                },
                "maxItems": {
                  "type": "integer",
                  "minimum": 1,
                  "maximum": 100,
                  "title": "Max items",
                  "description": "Max items."
                }
              }
            }
          },
          "records": {
            "title": "Advanced: inline records",
            "minItems": 1,
            "maxItems": 1000,
            "type": "array",
            "description": "Records.",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "sourcePlatform",
                "sourceUrl",
                "organizerName"
              ],
              "properties": {
                "sourcePlatform": {
                  "type": "string",
                  "enum": [
                    "posh",
                    "eventbrite",
                    "luma",
                    "meetup",
                    "other"
                  ],
                  "title": "Source platform",
                  "description": "Source platform."
                },
                "sourceUrl": {
                  "type": "string",
                  "maxLength": 2048,
                  "title": "Source url",
                  "description": "Source url.",
                  "pattern": "^https?://"
                },
                "organizerName": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "title": "Organizer name",
                  "description": "Organizer name."
                },
                "organizerUrl": {
                  "type": "string",
                  "maxLength": 2048,
                  "title": "Organizer url",
                  "description": "Organizer url.",
                  "pattern": "^https?://"
                },
                "organizerWebsite": {
                  "type": "string",
                  "maxLength": 2048,
                  "title": "Organizer website",
                  "description": "Organizer website.",
                  "pattern": "^https?://"
                },
                "venueName": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "title": "Venue name",
                  "description": "Venue name."
                },
                "venueAddress": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "title": "Venue address",
                  "description": "Venue address."
                },
                "eventName": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "title": "Event name",
                  "description": "Event name."
                },
                "eventStartAt": {
                  "type": "string",
                  "maxLength": 64,
                  "title": "Event start at",
                  "description": "Event start at.",
                  "pattern": "^\\d{4}-\\d{2}-\\d{2}(?:T|t).+$"
                },
                "city": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "title": "City",
                  "description": "City."
                },
                "country": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "title": "Country",
                  "description": "Country."
                },
                "category": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "title": "Category",
                  "description": "Category."
                },
                "text": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 50000,
                  "title": "Text",
                  "description": "Text."
                },
                "links": {
                  "type": "array",
                  "maxItems": 50,
                  "items": {
                    "type": "object",
                    "additionalProperties": false,
                    "required": [
                      "url"
                    ],
                    "properties": {
                      "url": {
                        "type": "string",
                        "maxLength": 2048,
                        "title": "Url",
                        "description": "Url.",
                        "pattern": "^https?://"
                      },
                      "label": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 300,
                        "title": "Label",
                        "description": "Label."
                      }
                    }
                  },
                  "title": "Links",
                  "description": "Links."
                },
                "contactEmail": {
                  "type": "string",
                  "maxLength": 320,
                  "title": "Contact email",
                  "description": "Contact email.",
                  "pattern": "^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$"
                },
                "socials": {
                  "type": "object",
                  "maxProperties": 20,
                  "additionalProperties": false,
                  "title": "Socials",
                  "description": "Socials.",
                  "properties": {
                    "instagram": {
                      "title": "Instagram",
                      "description": "Public organizer instagram channel.",
                      "type": "string",
                      "maxLength": 2048
                    },
                    "twitter": {
                      "title": "Twitter",
                      "description": "Public organizer twitter channel.",
                      "type": "string",
                      "maxLength": 2048
                    },
                    "facebook": {
                      "title": "Facebook",
                      "description": "Public organizer facebook channel.",
                      "type": "string",
                      "maxLength": 2048
                    },
                    "linkedin": {
                      "title": "Linkedin",
                      "description": "Public organizer linkedin channel.",
                      "type": "string",
                      "maxLength": 2048
                    },
                    "tiktok": {
                      "title": "Tiktok",
                      "description": "Public organizer tiktok channel.",
                      "type": "string",
                      "maxLength": 2048
                    },
                    "youtube": {
                      "title": "Youtube",
                      "description": "Public organizer youtube channel.",
                      "type": "string",
                      "maxLength": 2048
                    },
                    "website": {
                      "title": "Website",
                      "description": "Public organizer website channel.",
                      "type": "string",
                      "maxLength": 2048
                    }
                  }
                },
                "scaleSignal": {
                  "type": "number",
                  "minimum": 0,
                  "maximum": 1000000000,
                  "title": "Scale signal",
                  "description": "Scale signal."
                },
                "scaleSignalLabel": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 300,
                  "title": "Scale signal label",
                  "description": "Scale signal label."
                },
                "observationType": {
                  "type": "string",
                  "enum": [
                    "event",
                    "account"
                  ],
                  "default": "event",
                  "title": "Observation type",
                  "description": "Whether this public observation describes an event or only an organizer/community account."
                },
                "publicPeople": {
                  "type": "array",
                  "maxItems": 100,
                  "title": "Public people",
                  "description": "Public identity fields already returned by the source. No inferred or enriched identity data.",
                  "items": {
                    "type": "object",
                    "additionalProperties": false,
                    "required": [
                      "associationType"
                    ],
                    "properties": {
                      "associationType": {
                        "type": "string",
                        "enum": [
                          "attendee",
                          "member",
                          "host",
                          "organizer",
                          "guest",
                          "speaker",
                          "other"
                        ],
                        "title": "Association type",
                        "description": "Relationship explicitly stated by the source."
                      },
                      "name": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 300,
                        "title": "Public name",
                        "description": "Name as normalized from source-provided data."
                      },
                      "sourcePersonId": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 300,
                        "title": "Source person ID",
                        "description": "Public source identifier as normalized from source-provided data."
                      },
                      "username": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 300,
                        "title": "Username",
                        "description": "Public username as normalized from source-provided data."
                      },
                      "profileUrl": {
                        "type": "string",
                        "maxLength": 2048,
                        "pattern": "^https?://",
                        "title": "Profile URL",
                        "description": "Public profile URL returned by the source."
                      },
                      "imageUrl": {
                        "type": "string",
                        "maxLength": 2048,
                        "pattern": "^https?://",
                        "title": "Image URL",
                        "description": "Public image URL returned by the source."
                      },
                      "website": {
                        "type": "string",
                        "maxLength": 2048,
                        "pattern": "^https?://",
                        "title": "Website",
                        "description": "Public website returned for this person."
                      },
                      "socials": {
                        "type": "object",
                        "maxProperties": 7,
                        "additionalProperties": false,
                        "properties": {
                          "instagram": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 2048,
                            "title": "Instagram",
                            "description": "Public instagram field as normalized from source-provided data."
                          },
                          "twitter": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 2048,
                            "title": "Twitter",
                            "description": "Public twitter field as normalized from source-provided data."
                          },
                          "facebook": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 2048,
                            "title": "Facebook",
                            "description": "Public facebook field as normalized from source-provided data."
                          },
                          "linkedin": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 2048,
                            "title": "Linkedin",
                            "description": "Public linkedin field as normalized from source-provided data."
                          },
                          "tiktok": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 2048,
                            "title": "Tiktok",
                            "description": "Public tiktok field as normalized from source-provided data."
                          },
                          "youtube": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 2048,
                            "title": "Youtube",
                            "description": "Public youtube field as normalized from source-provided data."
                          },
                          "website": {
                            "type": "string",
                            "minLength": 1,
                            "maxLength": 2048,
                            "title": "Website",
                            "description": "Public website field as normalized from source-provided data."
                          }
                        },
                        "title": "Public social fields",
                        "description": "Public social fields as normalized from source-provided data."
                      },
                      "role": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 300,
                        "title": "Role",
                        "description": "Public role label returned by the source."
                      },
                      "isVerified": {
                        "type": "boolean",
                        "title": "Verified",
                        "description": "Verification flag returned by the source."
                      },
                      "sourceListCompleteness": {
                        "type": "string",
                        "enum": [
                          "complete",
                          "partial",
                          "unknown"
                        ],
                        "default": "unknown",
                        "title": "Source list completeness",
                        "description": "Whether the source states or structurally shows that its public list is complete."
                      },
                      "sourceListTruncated": {
                        "type": "boolean",
                        "default": false,
                        "title": "Source list truncated",
                        "description": "True when the upstream list or this record was visibly truncated."
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}