getAllLimitedPartnersData API

This API endpoint retrieves a paginated list of partners based on the given API key. It also includes pagination metadata, such as the total number of items, total pages, and the current page.

Endpoint

GET /api/limited-partners-data/getAllLimitedPartnersData


Query Parameters

ParameterTypeRequiredDescription
apiKeystringYesYour unique API key used for authentication.
pageintegerNoThe page number to retrieve (default: 1).
limitintegerNoThe number of items to retrieve per page (default: 10).


Fetch Limited Partners Data API

Example cURL Request

The following cURL command demonstrates how to fetch limited partners data using the API:

curl --request GET \
--url 'https://venturecapitalarchive.com/api/limited-partners-data/getAllLimitedPartners?apiKey=API_KEY&page=1&limit=10' \
--header 'accept: application/json'

Response

Success Response (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"]
    }
  ],
  "pagination": {
    "totalItems": "integer",
    "totalPages": "integer",
    "currentPage": "integer",
    "pageSize": "integer"
  }
}