The Vantage API authenticates your requests using your account’s API tokens. To use any Vantage API, you must pass an API token with each request. If you do not include your API token when making an API request, or use one that is incorrect or disabled, Vantage will return an error.

While all APIs are free to use, we require tokens to ensure stability of the API by enforcing rate-limiting. Additionally, in the future, we will expose additional API end-points to expose data specific from your Vantage account which can be determined by the corresponding access token.

We recommend that you keep your token in a safe space and not share it.

curl --request GET \
  --url https://api.vantage.sh/v1/providers \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer <YOUR TOKEN>'