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
Parameter | Type | Required | Description |
---|---|---|---|
apiKey | string | Yes | Your unique API key used for authentication. |
ventureFundId | array | Yes | A list of venture fund IDs to retrieve stages of investment. |
page | integer | No | The page number to retrieve (default: 1 ). |
limit | integer | No | The 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
)
200 OK
)On a successful request, the API returns the following:
{
"data": [
{
"stageOfInvestment": [
"String",
]
}
],
"pagination": {
"totalItems": 1,
"totalPages": 1,
"currentPage": 1,
"pageSize": 10
}
}