Getting started
Create an API Client
Go to the Distributor App and log-in.
You will be able to create an API client and get your client_id
and client_secret
.
Make sure to store them securely, you won't be able to see the client_secret
after it's generated.
info
Don't have a Distributor account ? Get in touch with us
Send API Calls
Our API uses Basic authentication with client_id
as username and client_secret
as password.
Here is an example using curl
:
curl -X GET https://distributor-api.spiko.finance/v0/investors/ \
-u "client_id:client_secret"
Distributor SDK (Coming soon)
We are working on a SDK to make it easier to interact with our API. Stay tuned for updates.