Fund Configuration and Metadata

Get a fund's configuration and parameters programtically

Method and URL

URL

https://tactycapi.com/api/v2/fund/{{FUND_ID}}

Method

POST

Params

Fund ID: The fund's unique ID identifier.

Sample Request

The following is a sample request:

// Sample request
curl https://tactycapi.com/api/v2/fund/{{FUND_ID}}
 -X POST
 -H 'Authorization:{{API KEY}}'

Sample Response

The response will provide the following fields:

  • Status Code: 200 for a succesful response

  • Body: JSON array of KPIs for each investment

  • Metrics provided are:

    • id: Fund ID

    • general: General Configuration parameters for the fund model

      • name: Name of the fund

      • startDate: Start date of the fund

      • endDate: End date of the fund

      • committedCapital: Size of the fund

    • investments: Array of all investment related data in the fund

      • Each array contains an object for a single portfolio company. The object has the following properties:

        • id: Internal unique ID related to the company and its scenario

        • investmentId: internal unique ID related to the portfolio company

        • scenarioName: The name of the performance case associated with this portfolio company

        • probPerc: The probabiliy of this performance case

        • stages: Funding and Valuation metrics related the stages of the portfolio compay. Each stage has a preMoneyValuation and roundSize field along with the time it takes to graduate or exit from this stage.

Last updated