Introduction

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.

Authentication

All private endpoints require API Key authentication. You can generate API keys in your account profile settings.

Authorization: Bearer YOUR_API_KEY

Market Data

Get Ticker
GET /api/v1/market/ticker?symbol=BTCUSDT

Returns the latest price and 24h volume for the specified symbol.

Trade

Place Order
POST /api/v1/trade/order

Payload example:

{
  "symbol": "BTCUSDT",
  "side": "buy",
  "type": "limit",
  "price": "65000",
  "amount": "0.1"
}