> ## 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.

# /ticketmaster/venues

> Get full Ticketmaster venue details by id or venue page URL: name, address, city, state, postal code, country and coordinates, image, timezone, box office / parking / accessibility / rules info blocks, seating chart images, city category links, related venue links, and the upcoming event count.

**Price:** 1 credit

**⚠️ Common errors:** 412: Venue not found (well-formed but nonexistent venue id)



## OpenAPI

````yaml /openapi/events-tickets.json post /api/ticketmaster/venues
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/ticketmaster/venues:
    post:
      tags:
        - /ticketmaster
      summary: /ticketmaster/venues
      description: >-
        Get full Ticketmaster venue details by id or venue page URL: name,
        address, city, state, postal code, country and coordinates, image,
        timezone, box office / parking / accessibility / rules info blocks,
        seating chart images, city category links, related venue links, and the
        upcoming event count.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Venue not found (well-formed but nonexistent
        venue id)
      operationId: __api_ticketmaster_venues_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TicketmasterVenuesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TicketmasterVenue'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TicketmasterVenuesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        venue:
          type: string
          minLength: 1
        domain:
          $ref: '#/components/schemas/TicketmasterDomain'
          default: ticketmaster.com
      type: object
      required:
        - venue
    TicketmasterVenue:
      properties:
        '@type':
          type: string
          default: TicketmasterVenue
        id:
          type: string
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        timezone:
          anyOf:
            - type: string
            - type: 'null'
        discovery_id:
          anyOf:
            - type: string
            - type: 'null'
        references:
          additionalProperties:
            type: string
          type: object
          default: {}
        address:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        general_info:
          additionalProperties:
            type: string
          type: object
          default: {}
        city_categories:
          items:
            $ref: '#/components/schemas/TicketmasterVenueCategory'
          type: array
          default: []
        related_links:
          items:
            $ref: '#/components/schemas/TicketmasterVenueRelatedLink'
          type: array
          default: []
        seat_maps:
          items:
            $ref: '#/components/schemas/TicketmasterVenueSeatMap'
          type: array
          default: []
        upcoming_event_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    TicketmasterDomain:
      type: string
      enum:
        - ticketmaster.com
        - ticketmaster.co.uk
        - ticketmaster.com.au
        - ticketmaster.co.nz
        - ticketmaster.ca
        - ticketmaster.com.mx
        - ticketmaster.com.br
        - ticketmaster.cl
        - ticketmaster.ie
        - ticketmaster.de
        - ticketmaster.at
        - ticketmaster.ch
        - ticketmaster.nl
        - ticketmaster.be
        - ticketmaster.fr
        - ticketmaster.es
        - ticketmaster.it
        - ticketmaster.pl
        - ticketmaster.cz
        - ticketmaster.dk
        - ticketmaster.no
        - ticketmaster.se
        - ticketmaster.fi
        - ticketmaster.ae
        - ticketmaster.co.za
        - ticketmaster.co.il
        - ticketmaster.sg
    TicketmasterVenueCategory:
      properties:
        '@type':
          type: string
          default: TicketmasterVenueCategory
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    TicketmasterVenueRelatedLink:
      properties:
        '@type':
          type: string
          default: TicketmasterVenueRelatedLink
        document_title:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    TicketmasterVenueSeatMap:
      properties:
        '@type':
          type: string
          default: TicketmasterVenueSeatMap
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - 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

````