Https API service is in beta testing, don't hesitate to give it a try!
All responses of endpoints are following this format below.
If code
is 0, means the endpoint is successfully invoked.
And you can get the required data from data.
If code
is not 0, please refer to the error code table for troubleshooting.
{
"code": 0, // 0 means request successful
// "message": "error message",
"data": {
... // here is the data you need
}
}
Code | Message | Description |
---|---|---|
0 | Success | Success |
403 | Forbidden No access, please check if API key is correct | |
429 | Too Many Requests | |
500 | Internal Server Error (Please contact us) | |
1000 | Other errors |