> ## 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/events

> Get full Eventbrite event details by event id or event URL: name, summary and full description, start and end date/time with timezone, online flag, price range and currency, event and sales status, category, subcategory and format, cover image and gallery, video, organizer (name, image, verification, hosting stats), venue with address and coordinates, artists/lineup (name, role, bio, image, social links), headliners and supporters, presenter, age restriction, door time, duration, refund policy, and FAQ. The domain parameter selects the country marketplace, which determines pricing, currency, and language.

**Price:** 1 credit

**⚠️ Common errors:** 412: Event not found (well-formed but nonexistent event id, or the page has no event)



## OpenAPI

````yaml /openapi/events-tickets.json post /api/eventbrite/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/events:
    post:
      tags:
        - /eventbrite
      summary: /eventbrite/events
      description: >-
        Get full Eventbrite event details by event id or event URL: name,
        summary and full description, start and end date/time with timezone,
        online flag, price range and currency, event and sales status, category,
        subcategory and format, cover image and gallery, video, organizer (name,
        image, verification, hosting stats), venue with address and coordinates,
        artists/lineup (name, role, bio, image, social links), headliners and
        supporters, presenter, age restriction, door time, duration, refund
        policy, and FAQ. The domain parameter selects the country marketplace,
        which determines pricing, currency, and language.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Event not found (well-formed but nonexistent
        event id, or the page has no event)
      operationId: __api_eventbrite_events_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventbriteEventsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EventbriteEvent'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    EventbriteEventsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        domain:
          $ref: '#/components/schemas/EventbriteDomain'
          default: eventbrite.com
        event:
          type: string
          minLength: 1
      type: object
      required:
        - event
    EventbriteEvent:
      properties:
        '@type':
          type: string
          default: EventbriteEvent
        id:
          type: string
        name:
          type: string
        summary:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        alias:
          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_free:
          anyOf:
            - type: boolean
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        sales_status:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        subcategory:
          anyOf:
            - type: string
            - type: 'null'
        format:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        video_url:
          anyOf:
            - type: string
            - type: 'null'
        organizer:
          anyOf:
            - $ref: '#/components/schemas/EventbriteEventOrganizer'
            - type: 'null'
        organization_id:
          anyOf:
            - type: string
            - type: 'null'
        venue:
          anyOf:
            - $ref: '#/components/schemas/EventbriteVenue'
            - type: 'null'
        price:
          anyOf:
            - $ref: '#/components/schemas/EventbritePrice'
            - type: 'null'
        age_restriction:
          anyOf:
            - type: string
            - type: 'null'
        door_time:
          anyOf:
            - type: string
            - type: 'null'
        location_type:
          anyOf:
            - type: string
            - type: 'null'
        duration_minutes:
          anyOf:
            - type: integer
            - type: 'null'
        refund_policy:
          anyOf:
            - type: string
            - type: 'null'
        is_refund_allowed:
          anyOf:
            - type: boolean
            - type: 'null'
        faqs:
          items:
            $ref: '#/components/schemas/EventbriteFaq'
          type: array
          default: []
        artists:
          items:
            $ref: '#/components/schemas/EventbriteArtist'
          type: array
          default: []
        headliners:
          items:
            type: string
          type: array
          default: []
        supporters:
          items:
            type: string
          type: array
          default: []
        presenter:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - 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
    EventbriteEventOrganizer:
      properties:
        '@type':
          type: string
          default: EventbriteEventOrganizer
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        badge_type:
          anyOf:
            - type: string
            - type: 'null'
        is_super_organizer:
          anyOf:
            - type: boolean
            - type: 'null'
        event_count:
          anyOf:
            - type: integer
            - type: 'null'
        hosting_years:
          anyOf:
            - type: integer
            - type: 'null'
        total_attendees:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
    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
    EventbriteFaq:
      properties:
        '@type':
          type: string
          default: EventbriteFaq
        question:
          type: string
        answer:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - question
    EventbriteArtist:
      properties:
        '@type':
          type: string
          default: EventbriteArtist
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        tagline:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        role:
          anyOf:
            - type: string
            - type: 'null'
        bio:
          anyOf:
            - type: string
            - type: 'null'
        social_media:
          items:
            $ref: '#/components/schemas/EventbriteSocialLink'
          type: array
          default: []
      type: object
      required:
        - name
    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
    EventbriteSocialLink:
      properties:
        '@type':
          type: string
          default: EventbriteSocialLink
        url:
          type: string
        link_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - url
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````