Overview
REST API
Section titled “REST API”This documentation does not provide ways to test our API directly. We recommend the following tools:
Once you prepare at least one tool, send a GET
request to our API endpoint:
https://account.guizhanss.com/api/
{ "name": "Guizhan Account API"}
If you get a similar JSON response above, you can use our API now!
Authentication
Section titled “Authentication”Many endpoints require authentication or return additional information if you are authenticated. Additionally, you can make more requests per hour when you are authenticated.
To authenticate your request, you will need to provide an access token with the required scopes or permissions. You can obtain an access token by creating an access token, or by OAuth applications.
After obtaining an access token, you can authenticate your request by sending the token in the Authorization
header of your request. For example, in the following Authorization
header, replace YOUR-TOKEN
with the access token you obtained.
Authorization: Bearer YOUR-TOKEN