This API endpoint retrieves a paginated list of industries associated with a specific venture fund, identified by the ventureFundId. It also includes pagination metadata such as the total number of items, total pages, and the current page.

Endpoint

GET /api/venture-funds-data/getIndustriesByVentureFundId


Query Parameters

ParameterTypeRequiredDescription
apiKeystringYesYour unique API key used for authentication.
ventureFundIdstringYesThe ID of the venture fund to retrieve associated industries.
pageintegerNoThe page number to retrieve (default: 1).
limitintegerNoThe number of items to retrieve per page (default: 10).

Example cURL Request

The following cURL command demonstrates how to fetch the industries associated with a specific venture fund using the API:

curl --request GET \
--url 'https://venturecapitalarchive.com/api/venture-funds-data/getIndustriesByVentureFundId?apiKey=API_KEY&ventureFundId=VENTURE_FUND_ID&page=1&limit=10' \
--header 'accept: application/json'

Response

Success Response (200 OK)

On a successful request, the API returns the following:

{
  "data": [
    {
      "industries": ["string", "string", "string"]
    }
  ],
  "pagination": {
    "totalItems": "integer",
    "totalPages": "integer",
    "currentPage": "integer",
    "pageSize": "integer"
  }
}