1. Funds
Services
  • Introduction
  • API Reference
    • Funds
      • Fund NAV Price
        GET
      • Fund Performance (Fund Level)
        GET
      • Fund Performance (Investor Level)
        GET
    • Ratings
      • Moody's Ratings Update
  • Schemas
    • Public
      • Api Errors
      • Api Error
      • Perfomance Metrics
      • Returns by Period
  1. Funds

Fund Performance (Investor Level)

Developing
GET
/api/v1/funds/{ticker}/performance/investor
Fetch fund performance metrics and returns for the specified fund ticker. Returns details at the investor account level.

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
Bodyapplication/json

🟠400
🟠401
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://services.alphaledger.com/api/v1/funds/T12/performance/investor?accountNumber=DA3345&asOf=2026-07-13' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "success": true,
    "data": {
        "asOf": "2020-07-17",
        "metrics": {
            "beginningCapital": 0,
            "endingBalance": 0,
            "endingUnits": 0
        },
        "returns": {
            "dayToDate": 0,
            "monthToDate": 0,
            "yearToDate": 0,
            "inceptionToDate": 0,
            "quarterToDate": 0
        }
    }
}
Modified at 2026-07-20 17:44:17
Previous
Fund Performance (Fund Level)
Next
Moody's Ratings Update
Built with