Skip to main content

Apito REST API Integration with Python Project

note

Always remember to replace API_SECRET of the Bearer Token and project-id of the URL with the correct value from apito console. Go to this page if you do not know where to find your api secrets and endpoints for your project

import http.client

conn = http.client.HTTPSConnection("https://api.apito.io/secured/rest/project")

headers = {
'content-type': "application/json",
'authorization': "Bearer API_SECRET"
}

conn.request("GET", "/api", headers=headers)

res = conn.getresponse()
data = res.read()

print(data.decode("utf-8"))