GuidesRecipesAPI Reference
Log In
Guides

Investor group summary

Investor group summary provides the key statistics of an investor group (i.e. sum of all investor entities which belong to the investor group) as of a selected date

API Reference Investor group summary

Definition

Investor group summary consists of standard fieldsets of output calculation from Quantium CORE.

Output is investor group specific as of a selected date.

The following is a list of standard fieldset returned from Quantium API.

OutputDescription
investorGroupNameName of investor group
asOfDateDate of output
nameName of investor entity in child table that belongs to the investor group
fundvehicleIdID of fund vehicle which the investor entity invests in
totalCommitmentTotal commitment of investor entity in the fund vehicle
totalContributionTotal contribution of investor entity in the fund vehicle
remainAvaDrawdornRemaining available for drawdown amount of investor entity in the fund vehicle
totalDistributionCumulative distribution of investor entity in the fund vehicle
recallableDistributionRemaining recallable distribution of investor entity in the fund vehicle
dpiDistribution over paid-in (i.e. DPI)
netMultipleTotal value / total contribution of investor (i.e. TVPI)
navNetOfCarryNAV net of carried interest of the investor entity

Generating investor group summary output

Value
HTTP MethodGET
Path/api/summary/investorgroup/{scopeId}/{investorgroupId}/{asOfDate}
Request parametersScope ID (string): An ID of the selected scope which can be acquired by the [Scope list API]

investorgroupId: unique ID of investor group

asOfDate: "YYYY-MM'DD" format
ReferenceAPI Reference [Investor group summary]

Example of JSON Result

{
  "investorGroupName": "Limited Partner Group 1",
  "asOfDate": "2020-09-30",
  "fundvehicleList": [
    {
      "name": "Limited Partner 1 Asia Program",
      "isTotal": false,
      "fundvehicleId": 9,
      "totalCommitment": 4000000,
      "totalContribution": 400000,
      "remainAvaDrawdorn": 3600000,
      "totalDistribution": 0,
      "recallableDistribution": 0,
      "dpi": 0,
      "netMultiple": 1.1880873786407766,
      "navNetOfCarry": 475234.95145631063
    },
    {
      "name": "Limted Partner 1 Cayman",
      "isTotal": true,
      "fundvehicleId": 0,
      "totalCommitment": 4000000,
      "totalContribution": 400000,
      "remainAvaDrawdorn": 3600000,
      "totalDistribution": 0,
      "recallableDistribution": 0,
      "dpi": 0,
      "netMultiple": 1.1880873786407766,
      "navNetOfCarry": 475234.95145631063
    }
  ]
}