# fintracker_api.api.NetworthApi ## Load the API package ```dart import 'package:fintracker_api/api.dart'; ``` All URIs are relative to *http://localhost* Method | HTTP request | Description ------------- | ------------- | ------------- [**networthBreakdown**](NetworthApi.md#networthbreakdown) | **GET** /api/v1/networth/breakdown | Breakdown [**networthSeries**](NetworthApi.md#networthseries) | **GET** /api/v1/networth/series | Series # **networthBreakdown** > NetWorthBreakdown networthBreakdown() Breakdown The latest day's buckets, plus every account's current balance native and in RUB. ### Example ```dart import 'package:fintracker_api/api.dart'; final api = FintrackerApi().getNetworthApi(); try { final response = api.networthBreakdown(); print(response); } on DioException catch (e) { print('Exception when calling NetworthApi->networthBreakdown: $e\n'); } ``` ### Parameters This endpoint does not need any parameter. ### Return type [**NetWorthBreakdown**](NetWorthBreakdown.md) ### Authorization [HTTPBearer](../README.md#HTTPBearer) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json, application/problem+json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) # **networthSeries** > List networthSeries(from, to) Series Daily net worth; defaults to the last 365 days. ### Example ```dart import 'package:fintracker_api/api.dart'; final api = FintrackerApi().getNetworthApi(); final DateTime from = 2013-10-20; // DateTime | final DateTime to = 2013-10-20; // DateTime | try { final response = api.networthSeries(from, to); print(response); } on DioException catch (e) { print('Exception when calling NetworthApi->networthSeries: $e\n'); } ``` ### Parameters Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **from** | **DateTime**| | [optional] **to** | **DateTime**| | [optional] ### Return type [**List<NetWorthDay>**](NetWorthDay.md) ### Authorization [HTTPBearer](../README.md#HTTPBearer) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json, application/problem+json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)