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 candles

GET
https://api.fusion.bitpanda.com/v1/candles/{pair}
Returns historical OHLCV (open, high, low, close, volume) candlestick data for the specified trading pair. Optionally filter by time range or limit the number of bars returned, counted back from the end time.

Request

Path Params

Query Params

Header Params

Responses

🟢200
application/json
OK
Bodyapplication/json

🟠400
🟠404
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.fusion.bitpanda.com/v1/candles/BTC-EUR?interval=5m&from=1718359200&to=1718445600&limit=100' \
--header 'x-api-key: <YOUR_API_KEY>'
Response Response Example
200 - success
[
    {
        "timestamp": 1718445600,
        "open": 61200,
        "high": 61800,
        "low": 60900,
        "close": 61500,
        "volume": 1200.5
    },
    {
        "timestamp": 1718532000,
        "open": 61500,
        "high": 62100,
        "low": 61100,
        "close": 61900,
        "volume": 980.3
    }
]
Modified at 2026-06-26 13:06:15
Previous
Get orderbook
Next
Get assets
Built with