This API endpoint retrieves a specific limited partner's basic details along with the firms they are associated with, based on the given API key and limited partner ID.

Endpoint

GET /api/limited-partners-data/getLimitedPartnersAndTheirFirms


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 associated firms for a specific limited partner:

curl --request GET \
--url 'https://venturecapitalarchive.com/api/limited-partners-data/getLimitedPartnersAndTheirFirms?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",
    "firm": ["string"]
  }
}