Getting started | API
Authorization
HTTP authentication via API key
We use HTTP authentication. You will need to provide your API key in the requests headers:
headers = {
"Authorization": "Your API Key",
"Content-Type": "application/json"
}
requests.get(url, headers=headers)