This API endpoint retrieves the stages of investment for a specific list of venture fund IDs.

Endpoint

GET /api/venture-funds-data/getStagesByVentureFundIds


Query Parameters

ParameterTypeRequiredDescription
apiKeystringYesYour unique API key used for authentication.
ventureFundIdarrayYesA list of venture fund IDs to retrieve stages of investment.
pageintegerNoThe page number to retrieve (default: 1).
limitintegerNoThe number of items to retrieve per page (default: 10).

Example cURL Request

The following cURL command demonstrates how to fetch the stages of investment for a list of venture fund IDs using the API:

curl --request GET \
--url 'https://venturecapitalarchive.com/api/venture-funds-data/getStagesByVentureFundIds?apiKey=API_KEY&ventureFundId=VENTURE_FUND_ID1&ventureFundId=VENTURE_FUND_ID2&page=1&limit=10' \
--header 'accept: application/json'

Response

Success Response (200 OK)

On a successful request, the API returns the following:

{
  "data": [
    {
      "stageOfInvestment": [
        "String",
      ]
    }
  ],
  "pagination": {
    "totalItems": 1,
    "totalPages": 1,
    "currentPage": 1,
    "pageSize": 10
  }
}