> ## 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()

> Fetch organization metadata.

Use `mesa.org.get()` to fetch the current or specified organization's metadata.

**Required scope: `read`**

```python theme={null}
org = await mesa.org.get()
print(org.slug)

other = await mesa.org.get(org="other-org")
```

## Options

<ParamField path="org" type="str | None">
  Organization override. If omitted, the client uses its configured or resolved default organization.
</ParamField>

## Response

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

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