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 assets

GET
https://api.fusion.bitpanda.com/v1/assets
Returns the list of supported assets (crypto and fiat) with their metadata. Optionally filter to one or more symbols via the asset query parameter.

Request

Query Params

Header Params

Responses

🟢200
application/json
OK
Bodyapplication/json

🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.fusion.bitpanda.com/v1/assets?asset=BTC%2CETH%2CEUR' \
--header 'x-api-key: <YOUR_API_KEY>'
Response Response Example
200 - success
[
    {
        "symbol": "BTC",
        "name": "Bitcoin",
        "type": "crypto"
    },
    {
        "symbol": "EUR",
        "name": "Euro",
        "type": "fiat"
    }
]
Modified at 2026-06-26 13:06:15
Previous
Get candles
Next
Get account
Built with