Skip to main content
GET /api/v1/organizations/current Requires org.read permission. Returns full details for the organization that the current Bearer token is scoped to.

Response

id
string
required
UUID of the organization.
slug
string
required
URL-safe identifier.
name
string
required
Display name.
created_at
string
required
ISO 8601 creation timestamp.
updated_at
string
required
ISO 8601 last-updated timestamp.

Errors

StatusWhen
401Missing or invalid Bearer token
403Caller lacks org.read permission
404Organization not found

Example

curl http://localhost:8080/api/v1/organizations/current \
  -H "Authorization: Bearer <token>"
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "slug": "acme-corp",
  "name": "Acme Corp",
  "created_at": "2026-01-15T09:00:00Z",
  "updated_at": "2026-03-10T14:30:00Z"
}

Build docs developers (and LLMs) love