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

Endpoint

GET /api/limited-partners-data/getLimitedPartnersAndTheirFocusedSectors


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 focused sectors for a specific limited partner:

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