# Get the ticker for a given asset

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/tickers/{assetId}:
    get:
      summary: Get the ticker for a given asset
      deprecated: false
      description: ''
      operationId: getTicker
      tags:
        - REST API/Endpoints/Tickers
        - Tickers
      parameters:
        - name: assetId
          in: path
          description: ''
          required: true
          example: b86c034b-efe3-11eb-b56f-0691764446a7
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Ticker for the given asset
          content:
            '*/*':
              schema:
                properties:
                  data:
                    properties:
                      assetId:
                        type: string
                        format: uuid
                      price:
                        type: string
                      currencyId:
                        type: string
                        format: uuid
                    x-apidog-orders:
                      - assetId
                      - price
                      - currencyId
                    type: object
                x-apidog-orders:
                  - data
                type: object
          headers: {}
          x-apidog-name: OK
        '400':
          description: Invalid asset ID
          content:
            '*/*':
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                    x-apidog-orders:
                      - code
                x-apidog-orders:
                  - error
          headers: {}
          x-apidog-name: Record Not Found
        '404':
          description: No ticker found for the given asset
          content:
            '*/*':
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                    x-apidog-orders:
                      - code
                x-apidog-orders:
                  - error
          headers: {}
          x-apidog-name: ''
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                    x-apidog-orders:
                      - code
                x-apidog-orders:
                  - error
          headers: {}
          x-apidog-name: ''
      security: []
      x-apidog-folder: REST API/Endpoints/Tickers
      x-apidog-status: released
      x-run-in-apidog: https://app.eu.apidog.com/web/project/365298/apis/api-4375767-run
components:
  schemas: {}
  securitySchemes:
    x-api-key:
      type: apikey
      name: x-api-key
      in: header
servers:
  - url: https://api.public.bitpanda.com
    description: Production
security: []

```