Getting Started with Elios Fund API
This page will help you get started with Elios Fund API. You'll be up and running in a jiffy!
Welcome
To get started using the Elios Fund API, the quickest way is to open our official Postman collection:
The base API URL is: https://api.eliosfund.com/.
Authentication and Authorization
Authentication is performed using a Bearer token that is passed in the Authorization header of each request. A token can be requested from your Partner Portal account at https://partners.eliosfund.com for all Partner API calls.
For more advanced integrations, the Elios Fund API also supports standard OAuth 2.0 Authorization Code and Client Credentials flow. OAuth 2.0 clients can also be managed from your Partner Portal.
Each API endpoint requires the token to have the correctly assigned scopes/abilities. When creating a token, make sure to select the scopes that will be applicable for the intent of your API request. Once an API key is created, if you need to update the permissions/scopes assigned to the API key, you must create new one.
Create A New API KeyUse your Partner Portal to manage your Elios Fund API keys.
Token Lifetime
All tokens expire 1 year after being issued and are long-lived. Because of this, it is important that you protect them. They should not be used in any sort of browser-based application where they can be stolen and used maliciously. With that being said, tokens can be deleted from your partner account at anytime if needed.
Content Type
The Elios Fund API supports numerous content types. You may use a different content type during the request by changing the Content-Type header as mentioned below. The supported content types are:
- JSON-LD -
application/ld+json(This is the default content type) - JSON API -
application/vnd.api+json - JSON -
application/json - CSV -
test/csv
Headers
Unless explicitly mentioned, each request should include the following headers:
| Header | Value |
|---|---|
| Authorization | Bearer xxxxxxx |
| Accept | application/ld+json |
Support
For assistance with the API or any Elios Fund supported integration, you can raise a ticket at https://portal.support.eliosfund.com or send an email to [email protected].
Schema
The Elios Fund API follows the Open API 3.0 specification. The schema file can be reached at:
Updated 8 months ago