
Get Started
Introduction
On this site, you can learn how to use the API to access and manage your data, starting with user authentication.
The first thing you need to do to use the Open API is to generate a secret key.

This key is very important for security and should never be made public. If you accidentally disclose your secret key, regenerate it immediately.
Sending requests using “Secret Key”
All Open APIs are formatted as shown below and must include a secret key.
Request Address
The table below provides information about the test environment.
Server Address | http://35.223.63.239:12000/ |
ID | cpapi |
Password | ********** |
Agent-Id | 1000 |
SecretKey | This key is available after the contract is finalized. |
Request Type
Request Method | POST |
Request Body Schema | JSON |
Request Headers
Authorization | bearer Sha256({secretKey}.{bodyJson}).ToBase64() ex) bearer B4S78sRSqYIpGg1lS0KuvyhWmHpyl7JWrdeF1zumd1o= |
Content-Type | application/json |
Agent-Id | Value ex) 1001 |
Example code

The response for all APIs is shown below.
{
"status":0, // 0 : suceed, 1: failed
"code":0, // error code
"message":"" // error message
}