# Get an organisation's ownership

Who owns the organisation, people and organisations both, and what it owns.

Canonical: https://chikaraintel.com/docs/api/reference/organisations/get-organisation-ownership

```text
GET https://api.chikaraintel.com/v1/organisations/{organisationReference}/ownership
```

Authentication: `Authorization: Bearer <token>`.

## Parameters

- `organisationReference` (uuid, path, required) The organisation's reference.

## Response

The payload is under `success`.

- `organisation` (object) `{ reference, name }`
- `profile_owners` (array) `{ reference, name, ownership_label, title_or_status, is_control_person }`.
- `org_owners` (array) Parents: `{ reference, name, ownership_label, is_controlling_interest, relationship_type }`.
- `subsidiaries` (array) Organisations it owns, same shape as `org_owners`.

`relationship_type` is one of `parent`, `minority_owner`, `joint_venture_partner`, `associate`, `subsidiary` or `affiliate`.

## Examples

cURL:

```bash
curl -sS "https://api.chikaraintel.com/v1/organisations/1a2b3c4d-5e6f-4a7b-8c9d-0e1f2a3b4c31/ownership" \
  -H "Authorization: Bearer $CHIKARA_API_TOKEN" \
  -H "Accept: application/json"
```

JavaScript:

```javascript
const BASE = "https://api.chikaraintel.com";
const headers = {
  Authorization: `Bearer ${process.env.CHIKARA_API_TOKEN}`,
  Accept: "application/json"
};

const res = await fetch(`${BASE}/v1/organisations/1a2b3c4d-5e6f-4a7b-8c9d-0e1f2a3b4c31/ownership`, { headers });
if (!res.ok) throw new Error(`${res.status} ${await res.text()}`);

const { success } = await res.json();
console.log(success);
```

Python:

```python
import os
import requests

BASE = "https://api.chikaraintel.com"
HEADERS = {
    "Authorization": f"Bearer {os.environ['CHIKARA_API_TOKEN']}",
    "Accept": "application/json",
}

res = requests.get(
    f"{BASE}/v1/organisations/1a2b3c4d-5e6f-4a7b-8c9d-0e1f2a3b4c31/ownership",
    headers=HEADERS,
    timeout=30,
)
res.raise_for_status()
print(res.json()["success"])
```

Response:

```json
{
  "status": {
    "code": 200,
    "messages": []
  },
  "success": {
    "organisation": {
      "reference": "1a2b3c4d-5e6f-4a7b-8c9d-0e1f2a3b4c31",
      "name": "Ashcombe Capital Partners"
    },
    "profile_owners": [],
    "org_owners": [],
    "subsidiaries": [
      {
        "reference": "6b1d2e3f-4a5b-4c6d-8e7f-9a0b1c2d3e11",
        "name": "Northgate Robotics",
        "ownership_label": "25–50%",
        "is_controlling_interest": false,
        "relationship_type": "associate"
      }
    ]
  },
  "correlation_id": "5f0c2a9e4b7d4c1e"
}
```

## Used by

- get_company_ownerships
