Individuals and Wealth Profile API

Table of contents

Overview

The Acuris High Net Worth Individuals (HNWI) Profile API, is the interface you use to retrieve the wealth profile of an individual from Wealthmonitor’s archive of over 300,000 records.

It is delivered over HTTPs, conforms to RESTful principles, and returns JSON objects.

Quick start

To retrieve a wealth profile, you need an individual’s ID obtained from the Acuris HNWI Search API:

{
	{…},
	"results": [
		{
			"id": "prime-000000"
			{…},
		},
		{…}
	]
}

You can then call the HNWI Profile API endpoint and get the wealth profile:

curl -H 'Authorization: Bearer YOUR_API_KEY' https://api.acuris.com/individuals/{id}/profile

Compression

We recommend the use of GZIP compression to gain up to 80% reduction in the JSON data transfer.

Accept-Encoding:deflate,gzip

Concurrency and rate limits

Each API key is limited to a maximum of 5 concurrent requests and 10 requests per second. Requests over the limit will receive the response ‘429 Too Many Requests’.

Full documentation

Detailed technical information for the Acuris HNWI Profile API is available via the Swagger documentation.