API Introduction
Welcome to the BitGrows Developer API. Our API allows you to automate your trading strategies and build third-party applications on top of our professional exchange engine. We support high-speed RESTful calls and real-time WebSocket streams.
Authentication
Private endpoints like wallet balance or order placement require an API Key. Include your key in the header of every request.
# Request Header Example
curl -H "X-BC-APIKEY: {your_api_key}" \
https://api.bitgrows.org/api/v3/account
Market Data Endpoints
Get real-time price info for any supported pair (e.g., BTCUSDT, ETHUSDT).
GET /api/v3/ticker/price
// Request Example
GET https://api.bitgrows.org/api/v3/ticker/price?symbol=BTCUSDT
// Response JSON
{
"symbol": "BTCUSDT",
"price": "67412.50",
"timestamp": 1711298400000
}
Note: More documentation sections (WebSocket, Margin, Futures) are being updated regularly.