FULLUP API Manual
API documentation
How to start using our Public API
If you want to use our APIs in order to get updates on your data, you have two options to quickly get started.
Option A. Try our Postman Collection
Do you want to quickly get a feeling about how our api works? Just import our postman collection from the following link. Play with it and integrate.
https://www.getpostman.com/collections/ea00e396356ef31fc3d3
Option B. Understand our API from the documentation
{{url}} = https://api.fullup.be
Generate tokens
POST
{{url}}/auth/generate
Use this method to generate the token you will use in other requests
Query Parameters
Name | Type | Description |
---|---|---|
password | string | Your password |
string | Your email address |
Get IDs of tanks
GET
{{url}}/loginApi?email=$email&password=$password
This command is used to generate tokens in order to further use the get tanks methods
Query Parameters
Name | Type | Description |
---|---|---|
string | ||
password | string |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Bearer token |
Get Tank Info
GET
{{url}}/tanks_public/:id
This API call provides you all the informations about a specific tank you own. Please note that you can only collect data about tanks if you are the owner.
Path Parameters
Name | Type | Description |
---|---|---|
id | string | Tank ID |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Bear token |
Content-Type | string | Application/json |
Remarks:
Currently, for security reasons you only get access to the tanks where you are set up as owner
For customisations, just change the {{url}} variable. If you are not sure about which URL to use, contact us (support@fullup.be)
If you need access to specific functionalities, contact us (support@fullup.be)
GET last tank data
GET
{{url}}/tanks/:id/data
GET the last 3 days of data
Path Parameters
Name | Type | Description |
---|---|---|
id | string | TANK ID |
Headers
Name | Type | Description |
---|---|---|
Content-type | string | Application Json |
Authorization | string | Bearer token |
Last updated