LogoLogo
  • API Reference Documentation
  • Export API endpoints
  • Investment Vehicles
  • Portfolio Companies
  • Investors
  • Commitments
  • Investments
  • Opportunities
  • Leads
  • Transactions
  • Companies Data Import
    • Company Financials
  • LEAD GENERATION
    • Web To Lead
Powered by GitBook
On this page
  • Get Investments
  • Get Investment

Was this helpful?

Investments

Get Investments

GET https://api.theairr.com/investment

This endpoint allows you to get information about all Investments in the Organization.

Headers

Name
Type
Description

X-API-KEY

string

API key for a particular Organization

{
    "id": b8229d06-008d-4881-8732-0dd72901c34e,
    "fundId": 56eb0247-c3c6-473b-b0b4-eb15ae2665c0,
    "fundName": "Kamchatka Fund I",
    "companyId": c193ce9d-6623-4c1e-a50d-85c8e056a206,
    "companyName": "Docvisual",
    "description": "Some description here",
    "investment_type": "Equity",
    "investmentData": {
        "totalStake": 32.05,
        "currentNav:" 4214234,
        "investmentCost": 500000,
        "dividends": 42342,
        "forecastedDividends": 523525,
        "actualExitProceeds": 243242,
        "forecastedExitProceeds": 432423
    },
    "investmentRounds": [
        {
            "id": 5997e091-45fd-4166-8f4e-65b221afcc8a,
            "date": 2019-09-30,
            "description": "Purchase of Class A shares from XYZ",
            "numberOfSharesAcquired": 24324,
            "shareClassId": 5a64a4cb-f41c-46e2-be90-b1d8600999c8,
            "shareClassName": "Class A shares",
            "acquired_stake": 0.44
        }
    ]
}

Get Investment

GET https://api.theairr.com/investment/:investmentId

This endpoint allows you to get information about a particular Investment

Query Parameters

Name
Type
Description

investmentId

string

ID of the Investment

Headers

Name
Type
Description

X-API-KEY

string

API key for a particular Organization

{
    "id": b8229d06-008d-4881-8732-0dd72901c34e,
    "fundId": 56eb0247-c3c6-473b-b0b4-eb15ae2665c0,
    "fundName": "Kamchatka Fund I",
    "companyId": c193ce9d-6623-4c1e-a50d-85c8e056a206,
    "companyName": "Docvisual",
    "description": "Some description here",
    "investment_type": "Equity",
    "investmentData": {
        "totalStake": 32.05,
        "currentNav:" 4214234,
        "investmentCost": 500000,
        "dividends": 42342,
        "forecastedDividends": 523525,
        "actualExitProceeds": 243242,
        "forecastedExitProceeds": 432423
    },
    "investmentRounds": [
        {
            "id": 5997e091-45fd-4166-8f4e-65b221afcc8a,
            "date": 2019-09-30,
            "description": "Purchase of Class A shares from XYZ",
            "numberOfSharesAcquired": 24324,
            "shareClassId": 5a64a4cb-f41c-46e2-be90-b1d8600999c8,
            "shareClassName": "Class A shares",
            "acquired_stake": 0.44
        }
    ]
}
{
    "timestamp":"2019-12-02T11:20:17.201+0000",
    "status":404,
    "error":"Not Found",
    "message":"Investment not found",
    "path":"/investment/564745a1-4964-420b-8c32-617737169050"
}

PreviousCommitmentsNextOpportunities

Last updated 4 years ago

Was this helpful?