getLimitedPartnerById API
This API endpoint retrieves the details of a specific limited partner based on the given API key and limited partner ID.
Endpoint
GET /api/limited-partners-data/getLimitedPartnerById
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
apiKey | string | Yes | Your unique API key used for authentication. |
limitedPartnerId | string | Yes | The ID of the limited partner whose details are to be retrieved. |
Example cURL Request
The following cURL command demonstrates how to fetch details for a specific limited partner:
curl --request GET \
--url 'https://venturecapitalarchive.com/api/limited-partners-data/getLimitedPartnerById?apiKey=API_KEY&limitedPartnerId=LIMITED_PARTNER_ID' \
--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"]
}
]
}