getAllDormantPartnersData API
This API endpoint retrieves a paginated list of dormant partners based on the given API key. It includes pagination metadata such as the total number of items, total pages, and the current page.
Endpoint
GET /api/limited-partners-data/getAllDormantPartners
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
apiKey | string | Yes | Your unique API key used for authentication. |
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 dormant partners data using the API:
curl --request GET \
--url 'https://venturecapitalarchive.com/api/limited-partners-data/getAllDormantPartners?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",
"createdAt": "DateTime",
"updatedAt": "DateTime",
"slug": "string",
"fullName": "string",
"name": "string",
"surname": "string",
"foto": "string",
"currentInvestingPosition": "string",
"investorType": ["string"],
"activeStatus": "string",
"sweetSpot": "string",
"ticketSize": "float",
"expertise": ["string"],
"sectorsFocused": ["string"],
"investmentFocus": ["string"],
"targetInvestment": ["string"],
"totalPortfolio": "integer",
"headquarters": "string",
"region": ["string"],
"countriesOfInvestment": ["string"],
"categoryBadge": ["string"],
"tierBadge": "string",
"opinionBadge": "string",
"upvotes": "string",
"ethicalRating": "float",
"networkRating": "float",
"firm": "string",
"description": "string",
"portfolioCompanies": ["string"],
"linkedinProfile": "string",
"twitterProfile": "string",
"crunchbaseProfile": "string",
"instagramProfile": "string",
"email": "string",
"phoneNumber": "string",
"website": "string",
"address": "string",
"coInvestors": ["string"],
"mafias": ["string"],
"investmentThesis": "string",
"managerExperience": "string",
"hobbiesInterests": ["string"],
"howToApproach": "string",
"additionalTags": ["string"],
"feedbackEntries": ["string"],
"labels": ["string"]
}
],
"pagination": {
"totalItems": "integer",
"totalPages": "integer",
"currentPage": "integer",
"pageSize": "integer"
}
}