API Access

The Octav API is protected by an access key.

Get a key

Contact our team on our website to request an access key.

Credits system

We use a credit system to monitor the use of the API and allow you to anticipate costs as easily as possible. The cost of one call is the same for all endpoints :

1 API call = 1 credit

You can at any moment check how many credits you have in your account calling the /credits endpoint, more details here : credits

Use the API

To authenticate API requests, include your API key in the Authorization header as a Bearer token.

Example:

GET /v1/portfolio HTTP/1.1
Host: https://api.octav.fi
Authorization: Bearer YOUR_API_KEY

or with curl

curl -X GET https://api.octav.fi/v1/portfolio \
-H "Authorization: Bearer YOUR_API_KEY"

Last updated