---
title: "Get Org Details"
method: GET
path: "/v1/orgs/{org_id}"
tags: ["v1-orgs"]
---

# Get Org Details

`GET /v1/orgs/{org_id}`

Get full details of a specific organization including user's permissions.

This is the "active org context" endpoint - call this when user selects an org
to get their role, permissions, and org details.

Args:
    org_id: Organization ID

Returns:
    Organization details with user's role and permissions

Example response:
{
    "org_id": "...",
    "name": "Acme Corp",
    "created_at": "2025-01-01T00:00:00Z",
    "my_role": "owner",
    "my_permissions": ["jobs.create", "orgs.delete", ...],
    "member_count": 12
}

Raises:
    403 if user is not a member of the organization

## Path parameters

- `org_id` string, required

## Response `200`

Successful Response

- object

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/tryardent/apis/fastapi.md) · [All operations](https://skmtc.net/tryardent/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tryardent/fastapi/versions/f92d8d54bae2/schema)
