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

KPI Metrics

Get a investment's KPIs programmatically

Method and URL

URL

https://tactycapi.com/api/v2/kpi-metrics/{{FUND_ID}}

Method

GET

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/kpi-metrics/{{FUND_ID}}
 -X GET
 -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:

    • investmentId: Internal Tactyc ID for the investment

    • name: Name of the portfolio company

    • label: KPI name (for e.g. "Revenue")

    • actual: Array of numbers of actual KPI data

    • projected: Array of numbers of projected KPI data

    • format: Format of the KPI data

    • startDate: Start of KPI collection date

    • reportingType: Whether the KPI data is monthly, quarterly or annual

```json
```json
{
    "status": 200,
    "body": [
        {
            "investmentId": "3cGySo6YP",
            "metrics": [
                {
                    "id": "6s0yw5c8pS",
                    "label": "ARR",
                    "actual": [
                        2300000,
                        2545832.891,
                        2571291.22,
                        2597004.132,
                        2622974.173,
                        2649203.915,
                        2675695.954,
                        2702452.914,
                        2729477.443,
                        2756772.217,
                        2784339.94,
                        2812183.339,
                        2840305.172,
                        2868708.224,
                        2897395.306,
                        2926369.259,
                        2955632.952,
                        2985189.281,
                        3015041.174,
                        2784339.94,
                        2812183.339,
                        2840305.172,
                        2868708.224,
                        2897395.306,
                        2926369.259,
                        2955632.952,
                        2985189.281,
                        3015041.174,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null
                    ],
                    "format": {
                        "currency": "USD",
                        "precision": 0
                    },
                    "documents": [],
                    "projected": [
                        3984901,
                        4024749.622,
                        4064997.118,
                        4105647.089,
                        4146703.56,
                        4188170.596,
                        4230052.302,
                        4272352.825,
                        4315076.353,
                        4358227.116,
                        4401809.388,
                        4445827.481,
                        4490285.756,
                        4535188.614,
                        4580540.5,
                        4626345.905,
                        4672609.364,
                        4719335.458,
                        4766528.812,
                        4401809.388,
                        4445827.481,
                        4490285.756,
                        4535188.614,
                        4580540.5,
                        4626345.905,
                        4672609.364,
                        4719335.458,
                        4766528.812,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null
                    ],
                    "startDate": "2021-11-01T00:00:00.000Z",
                    "qualitative": false,
                    "hideComments": false,
                    "reportingType": "quarterly",
                    "showProjected": false,
                    "enableDocuments": true,
                    "showCurrentPeriodOnly": false
                },
```

PreviousInvestment CashflowsNextUpdate KPI Metrics

Last updated 3 months ago