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
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 associated industries. |
page | integer | No | The page number to retrieve (default: 1 ). |
limit | integer | No | The 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
)
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"
}
}