1. Market data
Fusion Developer Platform
  • Getting started with Fusion
    • Overview
    • API key generation
    • Rate limits
  • API
    • Getting started
    • Market data
      • Get server time
        GET
      • Get tickers
        GET
      • Get trading pairs
        GET
      • Get orderbook
        GET
      • Get candles
        GET
      • Get assets
        GET
    • Account
      • Get account
      • Get account balances
    • Trading
      • Orders
        • Get orders
        • Create order
        • Get order by ID
        • Cancel order by ID
      • Trades
        • Get trades
        • Get trade by ID
  • MCP
    • Getting started
    • Available tools
  • CLI
    • Getting Started
    • Commands
  1. Market data

Get tickers

GET
https://api.fusion.bitpanda.com/v1/tickers
Returns current mid price and 24h statistics (high, low, volume) for all trading pairs, optionally filtered by pair name.

Request

Query Params

Header Params

Responses

🟢200
application/json
OK
Bodyapplication/json

🟠400
🟠401
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.fusion.bitpanda.com/v1/tickers?pair=BTC-EUR%2CETH-EUR' \
--header 'x-api-key: <YOUR_API_KEY>'
Response Response Example
200 - success
[
    {
        "pair": "BTC-EUR",
        "price": "61500.00",
        "high": "62000.00",
        "low": "60000.00",
        "volume": "250000"
    },
    {
        "pair": "ETH-EUR",
        "price": "3200.00",
        "high": "3300.00",
        "low": "3100.00",
        "volume": "150000"
    }
]
Modified at 2026-06-26 13:06:15
Previous
Get server time
Next
Get trading pairs
Built with