Tactyc Resource Center
  • General
    • What is Tactyc?
    • Training Videos
    • Contact Us
  • Portfolio Construction
    • Getting Started
    • Construction Wizard
      • General
      • Sector Profiles
      • Allocations
      • Fees & Expenses
      • Exit Recycling
      • Waterfall
      • Limited Partners
    • FAQs
      • How are Tactyc metrics calculated?
      • Construction vs. Current Forecasts
      • Downloading Charts
      • Reserve sizing
      • Fractional investments
      • Enter number of investments directly
      • Setting exit multiples directly
      • Backsolving to find an ideal portfolio
      • Adjusting Pacing
      • Liquidation at the end of fund's life
      • No or very little recycled proceeds
      • Creating a Fund of Funds Allocation
  • Portfolio Management
    • Adding Investments
    • Managing Rounds
      • Updating valuations
      • Updating ownerships
      • SAFEs and Notes
      • Warrants
      • Liquidation preferences
      • Multiple currencies
    • Performance Cases
      • Best Practices on Performance Cases
    • KPI Manager
      • Valuation Analysis
      • KPI Request Form FAQs
    • Document Center
    • Investments Table
      • Investment Reporting Metrics
      • Investment MOICs
      • Time Machine
      • Custom Views
      • Using Deal Tags
      • Using Custom Fields
    • Cap Table Calculator
    • Bulk Update Options
    • FAQs
  • Advanced
    • Construction Methodology
    • Updating Model for Actuals
    • Scenario Builder
    • Custom Formulas
    • Disable Automatic Projection
    • Fund of Funds
    • Multi-Fund Views
    • Capital Call Line of Credit
  • Insights
    • Optimizing Secondary Market Sales
    • Performance across reporting dimensions
    • Optimal Reserves Ranking
  • Sharing and Administration
    • Publishing
    • Collaborators
  • API and Integrations
    • API Overview
      • Adding a Single Investment
      • Adding Multiple Investments
      • Fund Configuration and Metadata
      • Performance Metrics
      • Performance Summary
      • Investment Cashflows
      • KPI Metrics
      • Update KPI Metrics
    • Zapier Integration
  • Technical
    • Recommendations
    • Technical Limitations
    • Technical Information
  • Account Administration
    • Login Credentials
    • Invoices
Powered by GitBook
On this page
  • Method and URL
  • Sample Request
  • Sample Response
  1. API and Integrations
  2. API Overview

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.

```json

{
    "status": 200,
    "body": {
        "id": "uIM6t9co-",
        "vanity": [
            "venturemanager",
            "3865"
        ],
        "createdBy": "admin@tactyc.io",
        "createdAt": "2021-11-01T17:04:55.000Z",
        "deletedAt": null,
        "deletedBy": null,
        "updatedAt": "2024-04-08T15:43:01.000Z",
        "publishStatus": "published",
        "password": null,
        "general": {
            "name": "Quantum Ventures II L.P.",
            "notes": "Master Model.",
            "endDate": "2120-01-01T00:00:00.000Z",
            "cashless": 0.2,
            "currency": "USD",
            "fundType": "traditional",
            "startDate": "2022-01-01T00:00:00.000Z",
            "unusedFee": 0.0002,
            "facilityTerm": 60,
            "interestRate": 0.0825,
            "unusedFeeLoc": 0.0125,
            "committedCapital": 200000000,
            "maxRepaymentTerm": 6,
            "lpCommittmentPerc": 0.98,
            "creditFacilitySize": 0,
            "capitalCallSchedule": "quarterly",
```
```

PreviousAdding Multiple InvestmentsNextPerformance Metrics

Last updated 3 months ago