Get Current Organization

Retrieve information about the organization associated with the authenticated API key.

get/v1/organizations/me?beta=true

Headers

x-api-keystring

Your unique Admin API key for authentication.

This key is required in the header of all Admin API requests, to authenticate your account and access Anthropic's services. Get your Admin API key through the Console.

Your unique Admin API key for authentication.

This key is required in the header of all Admin API requests, to authenticate your account and access Anthropic's services. Get your Admin API key through the Console.

anthropic-versionstring

The version of the Claude API you want to use.

Read more about versioning and our version history here.

The version of the Claude API you want to use.

Read more about versioning and our version history here.

Response

Successful Response

idstring uuid required

ID of the Organization.

namestring required

Name of the Organization.

type'organization' required

Object type.

For Organizations, this is always "organization".

Example response

{
  "id": "12345678-1234-5678-1234-567812345678",
  "name": "Organization Name"
}

Changes