API Reference

getVentureFundById

This API endpoint retrieves detailed information about a specific venture fund based on its ID.

Endpoint

GET /api/venture-funds-data/getVentureFundById


Query Parameters

ParameterTypeRequiredDescription
apiKeystringYesYour unique API key used for authentication.
ventureFundIdstringYesThe ID of the venture fund to retrieve.

Example cURL Request

The following cURL command demonstrates how to fetch the details of a venture fund using the API:

curl --request GET \
--url 'https://venturecapitalarchive.com/api/venture-funds-data/getVentureFundById?apiKey=API_KEY&ventureFundId=VENTURE_FUND_ID' \
--header 'accept: application/json'

Response

Success Response (200 OK)

On a successful request, the API returns the following:

{
   "data": [
    
      "id": "string",
      "createdAt": "DateTime",
      "updatedAt": "DateTime",
      "slug": "string",
      "name": "string",
      "website": "string",
      "globalHQ": "string",
      "region": ["string"],
      "countriesOfInvestment": ["string"],
      "stageOfInvestment": ["string"],
      "active": "ACTIVE",
      "investmentThesis": "string",
      "descriptionByAI": "string",
      "email": "string",
      "industries": ["string"],
      "labels": ["string"],
      "urls": ["string"],
      "hrefs": ["string"],
      "investorType": "string",
      "firstChequeMinimum": "float",
      "firstChequeMaximum": "float",
      "linkedIn": "string",
      "twitter": "string",
      "crunchbase": "string",
      "opinionsSummary": "string",
      "npsScore": "float",
      "contact1": "string",
      "email1": "string",
      "contact2": "string",
      "email2": "string",
      "fundNumber": "string",
      "numberOfExits": "string",
      "vintageYear": "string",
      "netIrr": "string",
      "investmentMultiple": "string",
      "websiteScreenshotPath": "string",
      "leadInvestor": "string",
      "coinvest": "string",
      "portfolioCompanies": ["string"],
      "preferredContactMethod": "string",
      "team": "json",
      "keyPeople": ["string"],
      "lastFundSize": "string",
      "metadata": "json",
      "needToProcessData": "boolean",
      "isUnified": "boolean",
      "failedToProcess": "boolean",
      "processError": "string",
      "allocation": "string",
      "managementFee": "string",
      "carriedInterest": "string",
      "aum": "string",
      "managersExperience": "string",
      "followOnInvestment": "string",
      "graduationRate": "string",
      "writeOffRatio": "string",
      "portfolioValue": "string",
      "investorsLists": ["InvestorListToInvestors"]
    ]}