API Authentication
The NiceNIC API uses API secret to authenticate requests. You can view और manage आपका API Secret in the कंट्रोल पैनल.
We strongly recommend that you keep आपका API secret secure, do not share आपका secrets in public areas such as GitHub, client code, etc. You can always reset आपका API Secret by कंट्रोल पैनल.
Authentication to the API is done using the HTTP Authयाization header, wयहाँ you need to specify आपका यूज़रनेम और API secret, separated by a colon.
सभी API requests must be made over HTTP. API requests without authentication will also fail.
https://api.nicenic.net/v2/
Host: api.nicenic.net
Authorization: username:api_secret
Content-Type: application/json
Authorization: username:api_secret
Content-Type: application/json
### Response format
```json
{
"code": 0,
"msg" : "success",
"data" : {} // Specific data
}






