> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voxmind.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Organisation

> Retrieve your organisation's profile including contact details and tax identifiers.

## Overview

Returns the profile for your organisation — name, address, contact email, phone number, and tax identifiers (VAT and VIES numbers for EU compliance). This is read-only for most integrations, but useful when building an account management UI in your developer portal.

## Path Parameters

<ParamField path="orgId" type="string" required>
  Your organisation's unique identifier.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.voxmind.ai/organisations/42 \
    -H "Authorization: Bearer YOUR_API_TOKEN" \
    -H "Accept: application/json"
  ```

  ```python Python theme={null}
  resp = requests.get(
      "https://api.voxmind.ai/organisations/42",
      headers={"Authorization": "Bearer YOUR_API_TOKEN"},
  )
  print(resp.json())
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": 42,
    "name": "Acme Security Ltd.",
    "address": "7 Bell Yard, London, England WC2A 2SJ, GB",
    "email": "api@acmesecurity.com",
    "phone_number": "+44 20 7946 0000",
    "vat": "GB123456789",
    "vies": "GB123456789",
    "created_at": "2025-01-15T09:00:00Z",
    "updated_at": "2025-02-01T14:22:00Z"
  }
  ```
</ResponseExample>
