getVentureFundsAndStages API
This API endpoint retrieves a list of venture funds along with their stages of investment.
Endpoint
GET /api/venture-funds-data/getVentureFundsAndStages
Query Parameters
| Parameter | Type | Required | Description | 
|---|---|---|---|
apiKey | string | Yes | Your unique API key used for authentication. | 
page | integer | No | The page number to fetch, defaults to 1. | 
limit | integer | No | The number of items per page, defaults to 10. | 
Example cURL Request
The following cURL command demonstrates how to fetch the list of venture funds and their stages:
curl --request GET \
--url 'https://venturecapitalarchive.com/api/venture-funds-data/getVentureFundsAndStages?apiKey=API_KEY&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": [
    {
      "id": "String",
      "name": "String",
      "slug": "String",
      "stageOfInvestment": [ "String",]},
    ]}