Skip to main content

Python

After generating an Access Token following the guide in the API Docs.

import requests

url = 'https://api.quartzy.com/user'

headers = {'Access-Token': 'some-access-token'}

r = requests.get(url, headers=headers)