> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mesa.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# org.get()

> Get metadata for an organization.

Get the current or specified organization.

**Required scope: `read`**

```ts theme={null}
const org = await mesa.org.get();
console.log(org.slug, org.name);
```

## Options

<ParamField path="org" type="string | undefined">
  Organization override.
</ParamField>

## Response

<ResponseField name="created_at" type="string">
  Organization creation time.
</ResponseField>

<ResponseField name="num_repos" type="number">
  Number of repositories in the organization.
</ResponseField>
