Skip to main content

Get your API key

To be able to make API calls to Easol you’ll need an API Key. To get a key follow these steps:
  1. Open your Easol admin
  2. Go to Settings and then Developer Tools
  3. Click on Create new key
  4. Give your key a name and hit save
  5. Copy your API key

Make a request

Authentication to the Easol API uses HTTP Basic Auth. You can make requests to the Easol API using your API key as the username to the basic auth, you don’t need to provide a password.
cURL
curl https://api.myeasol.com/hello -u YOUR_API_KEY:
The colon at the end will stop Curl asking you for a password. Alternatively you can use your key via bearer auth:
cURL
curl https://api.myeasol.com/hello \
	-h "Authorization: Bearer YOUR_API_KEY"