● Control plane
Organization
The organization behind your key. One object, provisioned with the key.
| GET | /v1/organization | Retrieve your organization |
GET/v1/organization
Retrieve your organization
The organization bound to your key. One organization per key; identity is stable and derived from the key itself.
scope · organization:read
# sandbox: full surface, no production data curl https://api.kineticanvil.com/v1/organization \ -H "Authorization: Bearer kx_test_xxxxxxxxxxxxxxxx" \ -H "Anvil-Version: 2026-07-05"
import requests
resp = requests.get(
"https://api.kineticanvil.com/v1/organization",
headers={
"Authorization": "Bearer kx_test_xxxxxxxxxxxxxxxx",
"Anvil-Version": "2026-07-05",
},
)
print(resp.json())const resp = await fetch("https://api.kineticanvil.com/v1/organization", { method: "GET", headers: { "Authorization": "Bearer kx_test_xxxxxxxxxxxxxxxx", "Anvil-Version": "2026-07-05", }, }); console.log(await resp.json());
● 200Anvil-Request-Id: req_01J…
200 Response
{
"organization_id": "string",
"name": "string",
"type": "string",
"created_at": "2026-07-05T00:00:00Z",
"features": [
"string"
]
}