Welcome to the Byro API. Our API allows you to access market data, manage your account, and execute trades programmatically. We use a RESTful architecture with JSON responses.
All private endpoints require API Key authentication. You can generate API keys in your account profile settings.
Authorization: Bearer YOUR_API_KEY
GET /api/v1/market/ticker?symbol=BTCUSDT
Returns the latest price and 24h volume for the specified symbol.
POST /api/v1/trade/order
Payload example:
{
"symbol": "BTCUSDT",
"side": "buy",
"type": "limit",
"price": "65000",
"amount": "0.1"
}