Security
oAuth2ClientCredentials
GET
import requests
url = "https://api.qargo.com/v1/companies/company"
headers = {"Authorization": "Bearer <YOUR_TOKEN_HERE>"}
response = requests.get(url, headers=headers)
data = response.json()
print(data)Response
{ "next_cursor": "string", "items": [ { … } ] }