Endpoint · Profiles

List a profile's ownership

The stakes a person holds in organisations.

GET/v1/profiles/{profileReference}/ownership

Authentication

Bearer token in the Authorization header. The token reaches what your plan covers. Getting a token.

Parameters

path parameters

profileReferenceuuid·pathrequired
The person's reference.

Response

success holds an array of the objects below.

  • organisationobject{ reference, name }
  • ownershipTypestringA label, such as Share Ownership.
  • ownershipPercentagestringA band, such as 25% but less than 50%.
  • titleOrStatusstring | nullThe person's title at the organisation.
  • isControlPersonboolean
  • isActiveboolean
  • startDatedate | null
  • endDatedate | null

Returns an empty array, not a 404, when the person holds no recorded stakes or the reference is unknown.

Examples

Set CHIKARA_API_TOKEN and each sample runs as written. Example records are invented.

curl -sS "https://api.chikaraintel.com/v1/profiles/d4e5f6a7-b8c9-4d0e-9f2a-b3c4d5e6f771/ownership" \
  -H "Authorization: Bearer $CHIKARA_API_TOKEN" \
  -H "Accept: application/json"

See pagination and errors.

Used by

MCP tools built on this endpoint.

Related