Getting started
Create an API Client
You need a distributor account to access this API.
info
Don't have a Distributor account ? Get in touch with us at contact@spiko.io.
We will also share with you access to our sandbox instance.
- Go to the Distributor App and log-in.
- You will be able to create an API client and get your
client_id
andclient_secret
. - Make sure to store them securely, you won't be able to see the
client_secret
after it's generated.
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.