You can use the following query to get the current portfolio matching your API subscription:
Likewise, for exits:
Adding query parameters to the API call, allows you to get data for specific private equity firms or companies.
Multiple values for the same query parameter are interpreted with OR condition, and different query parameters are interpreted using AND condition.
For example, to get all portfolio holdings for a list of PE sponsors, you can use their unique identifiers:
Likewise, to get a specific exit record for a PE firm and company, you can use:
Pagination
Results are returned by the API in blocks of 10 records per page. The “previous” and “next” links under the “_links” node allow you to paginate through the response.
If you are on page n/N and want to go to the next page of results, use the query specified in the “next” link. If the “next” link is, for example:
"next": "https://api.acuris.com/funds/privateEquity/activePortfolio?after=MzA%3D.a056802f"
then the pagination query will be like:
To go back to the previous page of results, use the query specified in the “previous” link. If the “previous” link is, for example:
"previous": "https://api.acuris.com/funds/privateEquity/activePortfolio?before=MjA%3D.bc70235f"
then the pagination query will be: