Bitpanda market-data API

Live ticker prices

Operations 1

GET /v1/ticker Get ticker prices #

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/bitpanda-market-data-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

bitpanda-market-data-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bitpanda Platform assets Market Data API
  version: v1
  description: 'Read-only Bitpanda Developer (Platform) API for querying a Bitpanda account: wallet balances, transactions, asset metadata, and live ticker prices across all asset types (crypto, fiat, stocks, ETFs, metals, indices). Generated by the API Evangelist enrichment pipeline from Bitpanda Labs'' first-party API reference (github.com/bitpanda-labs/agent-skills). Authentication is via an X-Api-Key header; pagination is cursor-based.'
  contact:
    name: Bitpanda Developer Portal
    url: https://developers.bitpanda.com/platform/
  license:
    name: Bitpanda Terms and Conditions
    url: https://www.bitpanda.com/en/legal/bitpanda-group-general-terms-conditions
servers:
- url: https://developer.bitpanda.com
  description: Bitpanda Platform API (used by the official MCP server, CLI, and agent skill)
- url: https://api.bitpanda.com/v1
  description: Bitpanda public API host (developers.bitpanda.com reference)
security:
- ApiKeyAuth: []
tags:
- name: market-data
  description: Live ticker prices
paths:
  /v1/ticker:
    get:
      operationId: getTicker
      summary: Get ticker prices
      description: Returns current prices for all available assets. Cursor paginated.
      tags:
      - market-data
      parameters:
      - name: page_size
        in: query
        required: false
        schema:
          type: integer
          maximum: 500
        description: Items per page
      - name: cursor
        in: query
        required: false
        schema:
          type: string
        description: Cursor for next page
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TickerPage'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '500':
          $ref: '#/components/responses/ServerError'
components:
  schemas:
    TickerPage:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Ticker'
        next_cursor:
          type: string
        has_next_page:
          type: boolean
    Ticker:
      type: object
      properties:
        id:
          type: string
          format: uuid
        symbol:
          type: string
          example: BTC
        type:
          type: string
          example: cryptocoin
        currency:
          type: string
          example: EUR
        price:
          type: string
          example: '95000.00000000'
        price_change_day:
          type: string
          example: '1.33'
  responses:
    Unauthorized:
      description: Invalid credentials / access token
    ServerError:
      description: Internal server error
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: Bitpanda API key. Generate one at https://web.bitpanda.com/my-account/apikey