This API endpoint retrieves a specific limited partner's basic details along with their target investments, based on the given API key and limited partner ID.

Endpoint

GET /api/limited-partners-data/getLimitedPartnersAndTheirTargetInvestments


Query Parameters

ParameterTypeRequiredDescription
apiKeystringYesYour unique API key used for authentication.
limitedPartnerIdstringYesThe ID of the limited partner whose data is to be retrieved.

Example cURL Request

The following cURL command demonstrates how to fetch details and target investments for a specific limited partner:

curl --request GET \
--url 'https://venturecapitalarchive.com/api/limited-partners-data/getLimitedPartnersAndTheirTargetInvestments?apiKey=API_KEY&limitedPartnerId=LIMITED_PARTNER_ID' \
--header 'accept: application/json'

Response

Success Response (200 OK)

On a successful request, the API returns the following:

{
  "data": {
    "id": "string",
    "name": "string",
    "fullName": "string",
    "activeStatus": "string",
    "slug": "string",
    "foto": "string",
    "targetInvestment": ["string"]
  }
}