Authentication

You'll need to authenticate your requests to access any of the endpoints in the Omnifuel API. In this guide, we'll look at how authentication works.

Basic authentication

With basic authentication, you use your account API Token to authenticate your HTTP requests. Here's how to authenticate using cURL:

Example request with authorization header

curl https://api.omnifuel.io/v1/organizations \
  -H "Authorization: Bearer {apiToken}" \

Was this page helpful?