1. REST API
Bitpanda API
  • REST API
    • Overview
    • API key generation
    • Migrating from the legacy API
    • Endpoints
      • Quotes
        • Create a trading quote
        • Accept a trading quote
      • Portfolio
        • Get portfolio overview
        • Get portfolio performance history
      • Operations
        • List operations
      • Currencies
        • List available currencies
      • Assets
        • List available assets
      • Earn
        • Execute an earn action (stake or unstake)
        • List earn asset configurations
      • Tickers
        • Get the ticker for a given asset
      • Trading Limits
        • Get current trading limits and remaining budget
        • Set daily trading volume limits for this API key
    • Schemas
      • CreateQuoteRequest
      • CreateQuoteResponse
      • QuoteDetailResponse
      • SingleItemResponseCreateQuoteResponse
      • AcceptQuoteExecutionResponse
      • AcceptQuoteResponse
      • AcceptQuoteTaxResponse
      • SingleItemResponseAcceptQuoteResponse
      • EarnActionRequest
      • EarnActionResponse
      • SingleItemResponseEarnActionResponse
      • SingleItemResponseTickerResponse
      • TickerResponse
      • ListItemResponsePortfolioPositionResponse
      • MoneyResponse
      • PortfolioPositionResponse
      • Data
      • Datapoint
      • PortfolioHistoryResponse
      • CompensatesInfoResponse
      • OperationResponse
      • OperationTransactionResponse
      • PaginatedListItemResponseOperationResponse
      • TradeResponse
      • EarnAssetConfigResponse
      • PaginatedListItemResponseEarnAssetConfigResponse
      • CurrencyResponse
      • ListItemResponseCurrencyResponse
      • AssetResponse
      • PaginatedListItemResponseAssetResponse
  • MCP Server
    • Getting Started
  • Rate Limits
    • API and MCP Rate Limits
  • Feedback & Support
    • Community Hub
  1. REST API

Migrating from the legacy API

This guide helps you transition your integrations from the deprecated legacy API (https://api.bitpanda.com/v1) to the new, enhanced Bitpanda Public API (https://api.public.bitpanda.com/v1).
The new REST API consolidates previous endpoints, introduces historical tracking, and adds completely new capabilities such as programmatic trading and staking management.

Endpoint Mapping Reference#

Use the table below to find the new equivalents for your legacy endpoints:
Legacy Endpoint (https://api.bitpanda.com)New Public API Endpoint (https://api.public.bitpanda.com)Description / Changes
GET /v1/wallets
GET /v1/fiatwallets
GET /v1/asset-wallets
GET /v1/portfolioConsolidates all fiat and asset wallets into a unified portfolio view.
— (No equivalent)GET /v1/portfolio-historyNew feature: Track your portfolio balances and performance over time.
GET /v1/trades
GET /v1/wallets/transactions
GET /v1/fiatwallets/transactions
GET /v1/assets/transactions/commodity
GET /v1/operationsGroups all historical movements, trades, and transaction types into a unified timeline.
GET /v1/tickerGET /v1/assets
GET /v1/currencies
GET /v1/tickers/{assetId}
Split into discrete endpoints to fetch assets details, currencies, or specific price tickers cleanly.
— (Trading was not offered)POST /v1/quotes
POST /v1/quotes/{id}/accept
New feature: Request commercial quotes and execute trades programmatically.
— (Earn was not offered)GET /v1/earn/configs
POST /v1/earn/actions/{action}
New feature: View staking configurations and manage your Bitpanda Earn stakes.

Key Changes Checklist#

Base URL Update: Update your integrations to point to the new base URL at https://api.public.bitpanda.com/v1.
New Scopes Required: Review the required scopes on your API keys before switching over. Actions like trading or interacting with Earn now require distinct Trade (Write) or Earn (Write) permissions.
Unified Entities: Instead of calling separate endpoints for wallets and fiatwallets, update your application models to look at the consolidated data returned by /v1/portfolio and /v1/operations.
Modified at 2026-07-10 14:38:44
Previous
API key generation
Next
Create a trading quote
Built with