Method
GET /v1/organizations/:id
Path Parameters
uuid
required
Organization ID.
Headers
string
Bearer token with
organizations:read scope.Request Example
curl "https://api.voyantcloud.com/v1/organizations/org_123" \
-H "Authorization: Bearer $VOYANT_API_KEY"
const res = await fetch("https://api.voyantcloud.com/v1/organizations/org_123", {
headers: { Authorization: `Bearer ${process.env.VOYANT_API_KEY}` },
})
const organization = await res.json()
import os, requests
resp = requests.get(
"https://api.voyantcloud.com/v1/organizations/org_123",
headers={"Authorization": f"Bearer {os.environ['VOYANT_API_KEY']}"},
)
organization = resp.json()
Response
{
"data": {
"id": "org_123",
"name": "Voyant Cruises",
"legalName": "Voyant Cruises SRL",
"email": "contact@voyantcruises.com",
"phone": "+40 700 000 001",
"description": "Cruise specialist partner",
"taxId": "RO12345678",
"kind": "agency",
"billingAddress": null,
"visitingAddress": null,
"metadata": { "tier": "gold" },
"createdAt": "2025-02-20T10:00:00.000Z",
"updatedAt": "2025-02-20T10:00:00.000Z"
}
}
{ "error": "Organization not found" }
Access is limited to organizations associated with the workspace in the API key context. Requests for other workspaces return
401 or 404 depending on context.