Skip to content

Overview

This documentation does not provide ways to test our API directly. We recommend the following tools:

  • cURL
  • Postman
  • Web Browser, if you don’t need to send headers or request body

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!

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