Private Equity Data API

Table of contents

You can use the following query to get the current portfolio matching your API subscription:

curl -H 'x-api-key: PUBLIC_API_KEY' https://api.acuris.com/funds/privateEquity/activePortfolio/

Likewise, for exits:

curl -H 'x-api-key: PUBLIC_API_KEY' https://api.acuris.com/funds/privateEquity/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:

curl -H 'x-api-key: PUBLIC_API_KEY' https://api.acuris.com/funds/privateEquity/activePortfolio/?peHouseID=830541,24574

Likewise, to get a specific exit record for a PE firm and company, you can use:

curl -H 'x-api-key: PUBLIC_API_KEY' https://api.acuris.com/funds/privateEquity/exits/?companyName=acuris&peHouseName=BC%20Partners

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:

curl -H 'x-api-key: PUBLIC_API_KEY' https://api.acuris.com/funds/privateEquity/activePortfolio/?after=MzA%3D.a056802f

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:

curl -H 'x-api-key: PUBLIC_API_KEY' https://api.acuris.com/funds/privateEquity/activePortfolio/?before=MjA%3D.bc70235f