This API endpoint retrieves the last fund size of a specific venture fund, identified by the ventureFundId
.
Endpoint
GET /api/venture-funds-data/getLastFundSizeByVentureFundId
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
apiKey | string | Yes | Your unique API key used for authentication. |
ventureFundId | string | Yes | The ID of the venture fund to retrieve the last fund size. |
Example cURL Request
The following cURL command demonstrates how to fetch the last fund size of a specific venture fund using the API:
curl --request GET \
--url 'https://venturecapitalarchive.com/api/venture-funds-data/getLastFundSizeByVentureFundId?apiKey=API_KEY&ventureFundId=VENTURE_FUND_ID' \
--header 'accept: application/json'
Response
Success Response (200 OK
)
200 OK
)On a successful request, the API returns the following:
{
"data": {
"lastFundSize": "string"
}
}