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

> Get full Ticketmaster attraction details (artist, team, or show) by id or artist page URL: name, description, category and genre, act type (Group/Individual) and sub type (Band/Musician), image and cover banner, average fan rating and review count, upcoming event count, biography, setlists (with song lists), FAQs, media gallery, related news articles, and related attractions ('fans also viewed').

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/events-tickets.json post /api/ticketmaster/attractions
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/attractions:
    post:
      tags:
        - /ticketmaster
      summary: /ticketmaster/attractions
      description: >-
        Get full Ticketmaster attraction details (artist, team, or show) by id
        or artist page URL: name, description, category and genre, act type
        (Group/Individual) and sub type (Band/Musician), image and cover banner,
        average fan rating and review count, upcoming event count, biography,
        setlists (with song lists), FAQs, media gallery, related news articles,
        and related attractions ('fans also viewed').


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Attraction not found (well-formed but
        nonexistent attraction id)
      operationId: __api_ticketmaster_attractions_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TicketmasterAttractionsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TicketmasterAttraction'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TicketmasterAttractionsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        attraction:
          type: string
          minLength: 1
        domain:
          $ref: '#/components/schemas/TicketmasterDomain'
          default: ticketmaster.com
      type: object
      required:
        - attraction
    TicketmasterAttraction:
      properties:
        '@type':
          type: string
          default: TicketmasterAttraction
        id:
          type: string
        name:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        cover:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        genre:
          anyOf:
            - type: string
            - type: 'null'
        sub_genre:
          anyOf:
            - type: string
            - type: 'null'
        attraction_type:
          anyOf:
            - type: string
            - type: 'null'
        attraction_sub_type:
          anyOf:
            - type: string
            - type: 'null'
        discovery_id:
          anyOf:
            - type: string
            - type: 'null'
        references:
          additionalProperties:
            type: string
          type: object
          default: {}
        has_video:
          anyOf:
            - type: boolean
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        upcoming_event_count:
          anyOf:
            - type: integer
            - type: 'null'
        bio:
          anyOf:
            - type: string
            - type: 'null'
        setlists:
          items:
            $ref: '#/components/schemas/TicketmasterSetlist'
          type: array
          default: []
        faqs:
          items:
            $ref: '#/components/schemas/TicketmasterFaq'
          type: array
          default: []
        gallery:
          items:
            $ref: '#/components/schemas/TicketmasterGalleryItem'
          type: array
          default: []
        news:
          items:
            $ref: '#/components/schemas/TicketmasterNews'
          type: array
          default: []
        related:
          items:
            $ref: '#/components/schemas/TicketmasterRelatedAttraction'
          type: array
          default: []
      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
    TicketmasterSetlist:
      properties:
        '@type':
          type: string
          default: TicketmasterSetlist
        tour_name:
          anyOf:
            - type: string
            - type: 'null'
        venue_name:
          anyOf:
            - type: string
            - type: 'null'
        city_name:
          anyOf:
            - type: string
            - type: 'null'
        country_name:
          anyOf:
            - type: string
            - type: 'null'
        event_date:
          anyOf:
            - type: string
            - type: 'null'
        songs:
          items:
            type: string
          type: array
          default: []
      type: object
    TicketmasterFaq:
      properties:
        '@type':
          type: string
          default: TicketmasterFaq
        question:
          anyOf:
            - type: string
            - type: 'null'
        answer:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    TicketmasterGalleryItem:
      properties:
        '@type':
          type: string
          default: TicketmasterGalleryItem
        document_title:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        video_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    TicketmasterNews:
      properties:
        '@type':
          type: string
          default: TicketmasterNews
        document_title:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    TicketmasterRelatedAttraction:
      properties:
        '@type':
          type: string
          default: TicketmasterRelatedAttraction
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          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

````