Bandsintown artist events API

The artist events API from Bandsintown — 1 operation(s) for artist events.

Operations 1

GET /artists/{artistname}/events Get upcoming, past, or all artist events, or events within a date range #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/bandsintown-artist-events-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

bandsintown-artist-events-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: '# What is the Bandsintown API?

    The Bandsintown API is designed for artists and enterprises representing artists.


    It offers read-only access to artist info and artist events:

    - artist info: returns the link to the Bandsintown artist page, the link to the artist photo, the current number of trackers and more

    - artist events: returns the list of events including their date and time, venue name and location, ticket links, lineup, description and the link to the Bandsintown event page


    Note you can specify if you only want to return upcoming events, past events, all events, or events within a given date range.


    # Getting Started

    - In order to use the Bandsintown API, you must read and accept our Terms and Conditions below and you must have written consent from Bandsintown Inc. Any other use of the Bandsintown API is prohibited. [Contact Bandsintown](http://help.bandsintown.com/) to tell us what you plan to do and request your personal application ID.

    - Find out about the API methods available and the format of the API responses below. Select the method you wish to use and try it out online with the app ID provided to you.

    - Call our Bandsintown API with the app ID provided straight from your website or back-end platform and choose which element of the API response you wish to display. Scroll to the bottom of this page to find out about the Models used.

    '
  version: 3.0.0
  title: Bandsintown artist events API
  contact:
    name: Bandsintown
    url: https://bandsintown.com/
  license:
    name: Terms and Conditions
    url: https://corp.bandsintown.com/data-applications-terms
servers:
- url: https://rest.bandsintown.com
tags:
- name: artist events
paths:
  /artists/{artistname}/events:
    get:
      tags:
      - artist events
      summary: Get upcoming, past, or all artist events, or events within a date range
      operationId: artistEvents
      description: 'artist events

        '
      parameters:
      - in: path
        name: artistname
        description: 'The name of the artist. If it contains one of the special characters below, please be sure to replace it by the corresponding code: for / use %252F, for ? use %253F, for * use %252A, and for " use %27C'
        required: true
        schema:
          type: string
      - in: query
        name: app_id
        description: The application ID assigned to you by Bandsintown
        required: true
        schema:
          type: string
      - in: query
        name: date
        description: 'Can be one of the following values: "upcoming", "past", "all", or a date range e.g. "2015-05-05,2017-05-05". If not specified, only upcoming shows are returned'
        required: false
        schema:
          type: string
      responses:
        200:
          description: Shows within a date range for the selected artist
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EventData'
components:
  schemas:
    OfferData:
      type: object
      required:
      - type
      - url
      - status
      properties:
        type:
          type: string
          example: Tickets
        url:
          type: string
          format: url
          example: http://www.bandsintown.com/event/13722599/buy_tickets?app_id=foo&artist=Skrillex&came_from=67
        status:
          type: string
          example: available
    VenueData:
      type: object
      required:
      - name
      - latitude
      - longitude
      - city
      - region
      - country
      properties:
        name:
          type: string
          example: Encore Beach Club
        latitude:
          type: string
          format: double
          example: '36.12714'
        longitude:
          type: string
          format: double
          example: '-115.1629562'
        city:
          type: string
          example: Las Vegas
        region:
          type: string
          example: NV
        country:
          type: string
          example: United States
    EventData:
      type: object
      required:
      - id
      - artist_id
      - url
      - on_sale_datetime
      - datetime
      - venue
      - offers
      - lineup
      properties:
        id:
          type: string
          format: integer
          example: '13722599'
        artist_id:
          type: string
          format: integer
          example: '438314'
        url:
          type: string
          format: url
          example: http://www.bandsintown.com/event/13722599?app_id=foo&artist=Skrillex&came_from=67
        on_sale_datetime:
          type: string
          format: datetime
          example: '2017-03-01T18:00:00'
        datetime:
          type: string
          format: datetime
          example: '2017-03-19T11:00:00'
        description:
          type: string
          example: This is a description
        venue:
          $ref: '#/components/schemas/VenueData'
        offers:
          type: array
          items:
            $ref: '#/components/schemas/OfferData'
        lineup:
          type: array
          items:
            type: string