mono-logo

Assets

Last updated April 8th, 2024

Our Assets API Endpoint provides all assets that a connected customer account currently holds in their various investment accounts. Information such as the name of the asset, the type e.g stock, the cost, the returns currency, symbol, price etc are all returned.

Response Object

Request

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
{
    "status": "successful",
    "message": "Request was succesfully completed",
    "timestamp": "2024-03-15T15:10:57.842Z",
    "data": {
        "id": "65d76676c4977cf",
        "balances": {
            "_u_s_d": 0
        },
        "assets": [
            {
                "name": "Mrchemicalmusic",
                "type": "Mixed",
                "cost": 1071,
                "return": 1071,
                "quantity": null,
                "currency": "USD",
                "details": {
                    "symbol": null,
                    "price": null,
                    "current_balance": 0
                }
            },
            {
                "name": "Tiv music plan",
                "type": "Stocks",
                "cost": 3719,
                "return": 3781,
                "quantity": null,
                "currency": "USD",
                "details": {
                    "symbol": null,
                    "price": null,
                    "current_balance": 0
                }
            },
            {
                "name": "Music",
                "type": "Stocks",
                "cost": null,
                "return": 0,
                "quantity": null,
                "currency": "USD",
                "details": {
                    "symbol": null,
                    "price": null,
                    "current_balance": 0
                }
            }
        ]
    }
}

Assets Fields

FieldDescriptionType
_idThe Asset ID.string
balancesThe total balances across all assets.object
assets.nameThe name of asset.string
assets.typeThe type of asset.string
assets.costThe total cost incurred on purchasing the asset.integer
assets.returnThe unrealized amount gained by the user.integer
assets.quantityThe quantity of asset owned.integer
assets.currencyThe currency of asset market in which the price is listed.string
assets.details.symbolThe asset's symbol.string
assets.details.priceThe purchase price of the asset.integer
assets.details.current_balanceThe current balance obtained from this asset.integer

Did this page help you?