getLimitedPartnersAndTheirCountriesOfInvestment API

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

Endpoint

GET /api/limited-partners-data/getLimitedPartnersAndTheirCountriesOfInvestment


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 countries of investment for a specific limited partner:

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