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

> Get Eventbrite event ticket and pricing information by event id or event URL: sales status, free and sold-out flags, price range and currency, number of ticket classes, availability flags (available tickets, waitlist, early-bird, buy-one-get-one), donations and add-ons flags, and sales start/end dates. The domain parameter selects the country marketplace.

**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/tickets
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/tickets:
    post:
      tags:
        - /eventbrite
      summary: /eventbrite/events/tickets
      description: >-
        Get Eventbrite event ticket and pricing information by event id or event
        URL: sales status, free and sold-out flags, price range and currency,
        number of ticket classes, availability flags (available tickets,
        waitlist, early-bird, buy-one-get-one), donations and add-ons flags, and
        sales start/end dates. The domain parameter selects the country
        marketplace.


        **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_tickets_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EventbriteTicketsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EventbriteTickets'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    EventbriteTicketsPayload:
      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
    EventbriteTickets:
      properties:
        '@type':
          type: string
          default: EventbriteTickets
        event_id:
          type: string
        sales_status:
          anyOf:
            - type: string
            - type: 'null'
        is_free:
          anyOf:
            - type: boolean
            - type: 'null'
        is_sold_out:
          anyOf:
            - type: boolean
            - type: 'null'
        min_price:
          anyOf:
            - type: number
            - type: 'null'
        max_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        ticket_class_count:
          anyOf:
            - type: integer
            - type: 'null'
        has_available_tickets:
          anyOf:
            - type: boolean
            - type: 'null'
        has_bogo_tickets:
          anyOf:
            - type: boolean
            - type: 'null'
        has_early_bird_tickets:
          anyOf:
            - type: boolean
            - type: 'null'
        waitlist_available:
          anyOf:
            - type: boolean
            - type: 'null'
        has_donations:
          anyOf:
            - type: boolean
            - type: 'null'
        has_addons:
          anyOf:
            - type: boolean
            - type: 'null'
        sales_start_at:
          anyOf:
            - type: integer
            - type: 'null'
        sales_end_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - event_id
    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
    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

````