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 (Fund Level)

Developing
GET
/api/v1/funds/{ticker}/performance/fund
Fetch fund performance metrics and returns for the specified fund ticker. Returns details at the fund 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/fund?asOf=2026-07-13' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "success": true,
    "data": {
        "asOf": "2020-07-17",
        "metrics": {
            "endingBalance": 0
        },
        "returns": {
            "dayToDate": 0,
            "monthToDate": 0,
            "yearToDate": 0,
            "inceptionToDate": 0,
            "quarterToDate": 0
        }
    }
}
Modified at 2026-07-20 17:43:01
Previous
Fund NAV Price
Next
Fund Performance (Investor Level)
Built with