Ticketmaster Discovery API — Attractions

Ticketmaster Discovery API — Attractions. 2 operations. Lead operation: Search attractions. Self-contained Naftiko capability covering one Live Nation Entertainment business surface.

Run with Naftiko Live Nation EntertainmentAttractions

What You Can Do

GET
Searchattractions — Search attractions
/v1/attractions-json
GET
Getattractiondetails — Get attraction details
/v1/attractions/id-json

MCP Tools

search-attractions

Search attractions

read-only idempotent
get-attraction-details

Get attraction details

read-only idempotent

Capability Spec

ticketmaster-discovery-attractions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Ticketmaster Discovery API — Attractions
  description: 'Ticketmaster Discovery API — Attractions. 2 operations. Lead operation: Search attractions. Self-contained
    Naftiko capability covering one Live Nation Entertainment business surface.'
  tags:
  - Live Nation Entertainment
  - Attractions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LIVE_NATION_ENTERTAINMENT_API_KEY: LIVE_NATION_ENTERTAINMENT_API_KEY
capability:
  consumes:
  - type: http
    namespace: ticketmaster-discovery-attractions
    baseUri: https://app.ticketmaster.com/discovery/v2
    description: Ticketmaster Discovery API — Attractions business capability. Self-contained, no shared references.
    resources:
    - name: attractions.json
      path: /attractions.json
      operations:
      - name: searchattractions
        method: GET
        description: Search attractions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: apikey
          in: query
          type: string
          description: API key for authentication.
          required: true
        - name: keyword
          in: query
          type: string
          description: Keyword to search on.
        - name: size
          in: query
          type: integer
          description: Page size of the response.
        - name: page
          in: query
          type: integer
          description: Page number.
    - name: attractions-id}.json
      path: /attractions/{id}.json
      operations:
      - name: getattractiondetails
        method: GET
        description: Get attraction details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Attraction identifier.
          required: true
        - name: apikey
          in: query
          type: string
          description: API key for authentication.
          required: true
    authentication:
      type: apikey
      key: apikey
      value: '{{env.LIVE_NATION_ENTERTAINMENT_API_KEY}}'
      placement: query
  exposes:
  - type: rest
    namespace: ticketmaster-discovery-attractions-rest
    port: 8080
    description: REST adapter for Ticketmaster Discovery API — Attractions. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/attractions-json
      name: attractions-json
      description: REST surface for attractions.json.
      operations:
      - method: GET
        name: searchattractions
        description: Search attractions
        call: ticketmaster-discovery-attractions.searchattractions
        with:
          apikey: rest.apikey
          keyword: rest.keyword
          size: rest.size
          page: rest.page
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/attractions/id-json
      name: attractions-id-json
      description: REST surface for attractions-id}.json.
      operations:
      - method: GET
        name: getattractiondetails
        description: Get attraction details
        call: ticketmaster-discovery-attractions.getattractiondetails
        with:
          id: rest.id
          apikey: rest.apikey
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: ticketmaster-discovery-attractions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Ticketmaster Discovery API — Attractions. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: search-attractions
      description: Search attractions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ticketmaster-discovery-attractions.searchattractions
      with:
        apikey: tools.apikey
        keyword: tools.keyword
        size: tools.size
        page: tools.page
      outputParameters:
      - type: object
        mapping: $.
    - name: get-attraction-details
      description: Get attraction details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ticketmaster-discovery-attractions.getattractiondetails
      with:
        id: tools.id
        apikey: tools.apikey
      outputParameters:
      - type: object
        mapping: $.