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

# /eventbrite/organizers/events

> List an Eventbrite organizer's upcoming events by organizer id or organizer URL. Each item includes id, name, url, summary, start and end date/time with timezone, online flag, cancellation flag, image, venue with address and coordinates, price range, and sales status. The domain parameter selects the country marketplace.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/events-tickets.json post /api/eventbrite/organizers/events
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/eventbrite/organizers/events:
    post:
      tags:
        - /eventbrite
      summary: /eventbrite/organizers/events
      description: >-
        List an Eventbrite organizer's upcoming events by organizer id or
        organizer URL. Each item includes id, name, url, summary, start and end
        date/time with timezone, online flag, cancellation flag, image, venue
        with address and coordinates, price range, and sales status. The domain
        parameter selects the country marketplace.


        **Price:** 1 credit
      operationId: __api_eventbrite_organizers_events_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventbriteOrganizerEventsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EventbriteOrganizerEvent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    EventbriteOrganizerEventsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        domain:
          $ref: '#/components/schemas/EventbriteDomain'
          default: eventbrite.com
        organizer:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - organizer
        - count
    EventbriteOrganizerEvent:
      properties:
        '@type':
          type: string
          default: EventbriteOrganizerEvent
        id:
          type: string
        name:
          type: string
        url:
          type: string
        summary:
          anyOf:
            - type: string
            - type: 'null'
        start_at:
          anyOf:
            - type: integer
            - type: 'null'
        end_at:
          anyOf:
            - type: integer
            - type: 'null'
        start_local:
          anyOf:
            - type: string
            - type: 'null'
        end_local:
          anyOf:
            - type: string
            - type: 'null'
        timezone:
          anyOf:
            - type: string
            - type: 'null'
        is_online:
          anyOf:
            - type: boolean
            - type: 'null'
        is_cancelled:
          anyOf:
            - type: boolean
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        venue:
          anyOf:
            - $ref: '#/components/schemas/EventbriteVenue'
            - type: 'null'
        price:
          anyOf:
            - $ref: '#/components/schemas/EventbritePrice'
            - type: 'null'
        sales_status:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    EventbriteDomain:
      type: string
      enum:
        - eventbrite.com
        - eventbrite.com.ar
        - eventbrite.com.au
        - eventbrite.at
        - eventbrite.be
        - eventbrite.com.br
        - eventbrite.ca
        - eventbrite.cl
        - eventbrite.co
        - eventbrite.dk
        - eventbrite.fi
        - eventbrite.fr
        - eventbrite.de
        - eventbrite.hk
        - eventbrite.ie
        - eventbrite.it
        - eventbrite.com.mx
        - eventbrite.nl
        - eventbrite.co.nz
        - eventbrite.com.pe
        - eventbrite.pt
        - eventbrite.sg
        - eventbrite.es
        - eventbrite.se
        - eventbrite.ch
        - eventbrite.co.uk
    EventbriteVenue:
      properties:
        '@type':
          type: string
          default: EventbriteVenue
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    EventbritePrice:
      properties:
        '@type':
          type: string
          default: EventbritePrice
        min_price:
          anyOf:
            - type: number
            - type: 'null'
        max_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        is_free:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````