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

ParameterTypeRequiredDescription
apiKeystringYesYour unique API key used for authentication.
pageintegerNoThe page number to fetch, defaults to 1.
limitintegerNoThe 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)

On a successful request, the API returns the following:

{
  "data": [
    {
      "id": "String",
      "name": "String",
      "slug": "String",
      "stageOfInvestment": [ "String",]},
    ]}