> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getnowadays.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Batch Create Events

> Create multiple events simultaneously for efficient venue sourcing

This endpoint allows you to create multiple events at once. Our AI will process all events in parallel, searching for venue matches across our database of 400K+ venues.

### Required Fields

<ParamField body="events" type="array" required>
  Array of event objects

  ```json theme={null}
  {
    "events": [
      {
        "name": "Q1 Sales Summit",
        "venue_type": "hotel",
        "event_type": "corporate",
        "guest_count": 150,
        "start_date": "2024-03-15T09:00:00Z",
        "end_date": "2024-03-17T17:00:00Z",
        "location": "Chicago, IL",
        "budget": 75000
      },
      {
        "name": "Executive Retreat",
        "venue_type": "resort",
        "event_type": "corporate",
        "guest_count": 50,
        "start_date": "2024-04-20T09:00:00Z",
        "end_date": "2024-04-22T17:00:00Z",
        "location": "Scottsdale, AZ",
        "budget": 45000
      }
    ]
  }
  ```
</ParamField>

### Optional Fields

<ParamField body="batch_reference" type="string">
  Custom reference ID for the batch
</ParamField>

<ParamField body="priority" type="string">
  Processing priority ("normal" or "high")
</ParamField>
