Using the API
1
Create an APP
Create an APP in the dashboard here, which you’ll use to securely access the API.Store
Don’t have access yet? Book a call with our Developer Platform team here.
Client ID
and Secret Key
as managed secrets as a environment variable via an .env
file, or directly in your app’s configuration depending on your preference..env
2
Install Dependencies
We’ll also use the
dotenv
library to load our Client ID and Secret Key from environment variables.3
Make your first request
Create a new file named
example.py
, depending on your language of choice and add the following code:4
Run the code