API Documentation
Bitzlatoview exposes a REST API mirroring the actions available in the dashboard. Below is a summary of key endpoint groups (see the codebase routes/ directory for the full list).
Markets
- GET /api/markets
- GET /api/markets/{symbol}
- GET /api/top-gainers
- GET /api/top-losers
Wallets
- GET /api/wallets
- POST /api/wallets/deposit
- POST /api/wallets/withdraw
- POST /api/wallets/transfer
Trading
- POST /api/orders
- GET /api/orders
- DELETE /api/orders/{id}
- GET /api/trades
Swap
- GET /api/swap/quote
- POST /api/swap/execute
P2P
- GET /api/p2p/ads
- POST /api/p2p/orders
- POST /api/p2p/orders/{id}/release
All financial endpoints require an authenticated Bearer token and support idempotency keys via the Idempotency-Key header. Rate limits apply.