List consolidated wallets
Retrieve consolidated balances and valuations on your wallets.
Path parameters
-
The Company ID given by Fipto.
Format should match the following pattern:
[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}
.
Query parameters
-
valuation_asset string
Specifies the asset used to value the resources retrieved by the endpoint.
Values are
EUR
orUSD
. Default value isEUR
. -
assets array[string]
Filters the wallets returned based on the specified assets. All assets will be returned by default.
GET
/companies/{company_id}/wallets/consolidation
curl \
-X GET https://api.fipto.app/companies/9de0691c-bc8d-409b-8f40-75d4f45db2f3/wallets/consolidation
Response examples (200)
{
"meta": {
"request_id": "string",
"query_parameters": {}
},
"data": {
"type": "wallets-consolidation",
"attributes": {
"total_value": "1000",
"valuation_asset": "string",
"assets": [
{
"asset": "BTC",
"balances": {
"available": "1000",
"forecasted": "1000"
},
"value": "1000",
"wallets_count": 42
}
]
}
}
}
Response examples (200)
{
"meta": {
"request_id": "string",
"query_parameters": {}
},
"data": {
"type": "wallets-consolidation",
"attributes": {
"total_value": "1000",
"valuation_asset": "string",
"assets": [
{
"asset": "BTC",
"balances": {
"available": "1000",
"forecasted": "1000"
},
"value": "1000",
"wallets_count": 42
}
]
}
}
}