Getting Started
๐ Table of Contents
๐ Changelog
To be supplemented with specific update records
๐ Documentation
This document describes the REST API for BitTap Open API.
BitTap Open API provides programmatic access to BitTap trading functionality. All requests should be sent via HTTPS. All data is returned in JSON format.
** URL: **
- API URL:
https://openapi.bittap.com - Public URL:
https://api.bittap.com
** Rate Limits: **
- 600 requests per minute.
- 10 requests per second.
๐ Getting Started
API Basics
Supported HTTP Methods:
GET- Retrieve dataPOST- Create dataPUT- Update dataDELETE- Delete data
Request Format:
- Content-Type:
application/json(only for POST/PUT requests) - All non-public API requests require authentication information
Response Format:
{
"code": "0",
"data": {},
"msg": "Request successful",
"success": true
}๐ง API Basics
HTTP Response Codes
| Code | Description |
|---|---|
| 200 | Request successful |
| 400 | Request parameter error |
| 401 | Authentication failed |
| 403 | Insufficient permissions |
| 404 | Resource not found |
| 429 | Request rate limit exceeded |
| 500 | Internal server error |
API Error Code Format
{
"code": "10001",
"msg": "Parameter error",
"success": false
}Access Limits
To be supplemented with specific access limit descriptions
Last updated on: