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 orderbook

GET
https://api.fusion.bitpanda.com/v1/orderbook/{pair}
Returns a snapshot of the order book (bids and asks) for the specified trading pair.

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/orderbook/BTC-EUR?depth=10' \
--header 'x-api-key: <YOUR_API_KEY>'
Response Response Example
200 - Example 1
{
    "pair": "BTC-EUR",
    "timestamp": "2025-05-08T16:17:01.863Z",
    "bids": [
        {
            "price": "49990.0",
            "quantity": "0.051",
            "totalQuantity": "0.072"
        }
    ],
    "asks": [
        {
            "price": "49990.0",
            "quantity": "0.051",
            "totalQuantity": "0.072"
        }
    ]
}
Modified at 2026-06-26 13:06:15
Previous
Get trading pairs
Next
Get candles
Built with