Tuesday, 20 May 2025, 3:37 PM
Created by: Ruvenss G. Wilches
You can always verify if your current token is valid by using the following end point
curl --location 'https://api.nizu.dev/v2/' \
--header 'Authorization: Bearer 13eec190332cecd1c25ac30a648c4fda'Python Example
import http.client
conn = http.client.HTTPSConnection("api.nizu.dev")
payload = ''
headers = {
'Authorization': 'Bearer 13eec190332cecd1c25ac30a648c4fda'
}
conn.request("GET", "/v2/", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))