1. Funds
Services
  • Introduction
  • API Reference
    • Funds
      • Fund NAV Price
        GET
      • Fund Performance
        GET
  • Schemas
    • Public
      • Errors
      • ApiError
      • Perfomance Metrics
      • Returns by Period
  1. Funds

Fund Performance

Developing
GET
/api/v1/funds/{ticker}/performance
Fetch fund performance metrics and returns for the specified fund ticker. If the accountNumber is provided, results are scoped to metrics and returns specific to the specified accountNumber.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Query Params

Responses

🟢200Success
application/json
Body

🟠400
🟠401
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/funds//performance?accountNumber=DA3345' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "success": true,
    "data": {
        "metrics": {
            "beginningCapital": 0,
            "endingBalance": 0,
            "endingUnits": 0,
            "netIncome": 0,
            "managementFee": 0,
            "unrealizedProfitAndLoss": 0
        },
        "returns": {
            "dayToDate": 0,
            "monthToDate": 0,
            "yearToDate": 0,
            "inceptionToDate": 0,
            "quarterToDate": 0
        }
    }
}
Modified at 2026-04-14 17:46:26
Previous
Fund NAV Price
Next
Errors
Built with