> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zilodata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get artist concerts

> Get upcoming concerts for the specified artist



## OpenAPI

````yaml api-reference/spotify-openapi.json get /api/v1/artists/concerts
openapi: 3.1.0
info:
  title: Spotify APIs
  description: Spotify API Documentation
  version: 1.0.0
servers:
  - url: https://spotify-api31.p.rapidapi.com
security: []
paths:
  /api/v1/artists/concerts:
    get:
      tags:
        - Artists
      summary: Get artist concerts
      description: Get upcoming concerts for the specified artist
      operationId: getApiV1ArtistsConcerts
      parameters:
        - in: query
          name: uri
          schema:
            type: string
            pattern: ^spotify:artist:[a-zA-Z0-9]+$
            description: Spotify artist URI to get artist concerts
            example: spotify:artist:1HY2Jd0NmPuamShAr6KMms
          required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Success
                  statusCode:
                    type: number
                    example: 200
                  pagination:
                    type: object
                    properties:
                      total:
                        type: number
                        example: 100
                      hasMore:
                        type: boolean
                        example: true
                      continuation:
                        type:
                          - string
                          - 'null'
                        description: Continuation token for pagination
                        example: CDsQ8FsiEwje95_F1pmRAxXlsykDHUX
                  data:
                    type: object
                    properties:
                      items:
                        type: array
                        items:
                          type: object
                          properties:
                            title:
                              type: string
                              description: Concert title
                              example: Lady Gaga
                            uri:
                              type: string
                              description: Spotify concert URI
                              example: spotify:concert:1X87ZdtrR3mjpy6tl0Cpe0
                            startDateIsoString:
                              type: string
                              description: Concert start date in ISO 8601 format
                              example: 2026-01-21T19:00+09:00
                            location:
                              type: object
                              properties:
                                city:
                                  type: string
                                  description: City name
                                  example: Osaka
                              required:
                                - city
                              description: Concert location information
                            artists:
                              type: array
                              items:
                                type: object
                                properties:
                                  name:
                                    type: string
                                    description: Artist name
                                    example: Lady Gaga
                                required:
                                  - name
                              description: Array of artists performing at the concert
                          required:
                            - title
                            - uri
                            - startDateIsoString
                        description: Array of concerts
                      nearby:
                        type: object
                        properties:
                          locationName:
                            type: string
                            description: Location name for nearby concerts
                            example: Hanoi
                          concerts:
                            type: array
                            items:
                              type: object
                              properties:
                                title:
                                  type: string
                                  description: Concert title
                                  example: Lady Gaga
                                uri:
                                  type: string
                                  description: Spotify concert URI
                                  example: spotify:concert:1X87ZdtrR3mjpy6tl0Cpe0
                                startDateIsoString:
                                  type: string
                                  description: Concert start date in ISO 8601 format
                                  example: 2026-01-21T19:00+09:00
                                location:
                                  type: object
                                  properties:
                                    city:
                                      type: string
                                      description: City name
                                      example: Osaka
                                  required:
                                    - city
                                  description: Concert location information
                                artists:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      name:
                                        type: string
                                        description: Artist name
                                        example: Lady Gaga
                                    required:
                                      - name
                                  description: Array of artists performing at the concert
                              required:
                                - title
                                - uri
                                - startDateIsoString
                            description: Array of nearby concerts
                        description: Nearby concerts information
                    description: Artist concerts information
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Bad request
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Invalid API key
        '403':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: >-
                      You are not subscribed to this API, please subscribe
                      before using
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Internal Server Error
                  status_code:
                    type: number
                    example: 500
                  cost:
                    type: number
                    example: 0
                  explain:
                    type: string
                    example: Internal Server Error
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-rapidapi-key
      description: API Key

````