curl -X GET https://api.voxmind.ai/organisations/42 \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
resp = requests.get(
"https://api.voxmind.ai/organisations/42",
headers={"Authorization": "Bearer YOUR_API_TOKEN"},
)
print(resp.json())
{
"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"
}
Organisation
Get Organisation
Retrieve your organisation’s profile including contact details and tax identifiers.
GET
/
organisations
/
{orgId}
curl -X GET https://api.voxmind.ai/organisations/42 \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
resp = requests.get(
"https://api.voxmind.ai/organisations/42",
headers={"Authorization": "Bearer YOUR_API_TOKEN"},
)
print(resp.json())
{
"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"
}
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
string
required
Your organisation’s unique identifier.
curl -X GET https://api.voxmind.ai/organisations/42 \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"
resp = requests.get(
"https://api.voxmind.ai/organisations/42",
headers={"Authorization": "Bearer YOUR_API_TOKEN"},
)
print(resp.json())
{
"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"
}

