Documentation

Build faster and better tools to help your asset management go further
We are a technology company with focus on facilitating asset managements to gain access to more and improved information via our tools.
Get started Get an API key
1
Basics
All of our APIs are available under the domain
GET
https://api.abalustre.com
To use your API key, you need to add a header in every call:
x-api-key
YOUR_API_KEY
2
Private requests
Private requests use an Authorization header token that can be retrieved using the authentication API.
Authorization
Bearer <YOUR_TOKEN_HERE>
You can request a token by hitting:
POST
https://api.abalustre.com/auth/login
{
  "username" : "your_unique_username",
  "password": "H4r694ssw0r6"
}
3
Pagination
We provide two types of pagination, depending on the data you are requesting.
In this pagination type, the object will have three attributes.
Attribute
Description
Default
current
The current page you have received.
1
items
The total number of items you have through all the pages.
pages
The total number of pages you can navigate through.
{
  "data" : [],
  "pagination": {
    "current": 1,
    "items": 50,
    "pages": 200
  }
}
To paginate, send as a query string parameter the attribute page with the respective number of the desired page.
GET
https://api.abalustre.com/funds?page=3
For datasets that may retrieve more than 10.000 results, we use the elastic search next pagination structure. In that case, the pagination object will retrieve the following attributes:
Attribute
Description
Default
current
The current page identification.
null for the first page.
items
The total number of items you have through all the pages.
pages
The total number of pages you can expect to navigate through.
next
The page identification to navigate to the next page.
{
  "data" : [],
  "pagination": {
    "current": 1,
    "items": 50,
    "pages": 200,
    "next": "AbCdEfGh012345"
  }
}
To paginate, send as a query string parameter the attribute page with the respective identification of the iteration.
GET
https://api.abalustre.com/funds?page=AbCdEfGh012345