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

ParameterTypeRequiredDescription
apiKeystringYesYour unique API key used for authentication.
ventureFundIdstringYesThe 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)

On a successful request, the API returns the following:

{
  "data": {
    "lastFundSize": "string"
  }
}