Skip to main content
GET
/
organizations
/
{organization_id}
Get organization
curl --request GET \
  --url https://api.bedrock.cv/organizations/{organization_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "org_01JABCD123",
    "name": "Acme Construction",
    "owner_id": "usr_01JABCD123",
    "require_mfa": false,
    "created_at": "2024-01-10T08:00:00Z",
    "updated_at": "2024-01-10T08:00:00Z"
  }
}
Returns the full details for an organization.

Authorizations

Authorization
string
header
required

API key prefixed with sk_. Example: Authorization: Bearer sk_xxx

Headers

X-API-Version
string
default:2026-01-01

API version

Path Parameters

organization_id
string
required

Organization ID

Response

Success

data
object
Example:
{
"id": "org_01JABCD123",
"name": "Acme Construction",
"owner_id": "usr_01JABCD123",
"require_mfa": false,
"created_at": "2024-01-10T08:00:00Z",
"updated_at": "2024-01-10T08:00:00Z"
}