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

# repos_list_for_org

> List an organization's repositories. Unlike the personal listing, `type` and `sort` combine freely here.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://api.github.com/orgs/{org}/repos"}</code></div>

```python github_repos_list_for_org.py theme={null}
from charter.packs import github

result = await github.repos_list_for_org.ainvoke({"org": ...})
```

<Note>
  Requires `repo`, `read:user`. Pages by number: `page` with `per_page`.
</Note>

## Path parameters

<div className="reference-table">
  | Field                                                       | Type     | Description                                            |
  | ----------------------------------------------------------- | -------- | ------------------------------------------------------ |
  | `org` <span className="required" title="required">\*</span> | `string` | The organization name. The name is not case sensitive. |
</div>

## Query parameters

<div className="reference-table">
  | Field       | Type                                                                | Description                                                                                                                       |
  | ----------- | ------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
  | `perPage`   | `integer`                                                           | The number of results per page (max 100). Defaults to 30. <span className="field-constraints">≥ 1; ≤ 100; defaults to `30`</span> |
  | `page`      | `integer`                                                           | The page number of the results to fetch. Defaults to 1. <span className="field-constraints">≥ 1; defaults to `1`</span>           |
  | `type`      | [OrgRepoType](/charter/charter/packs/github/repos/objects#orgrepotype)      | Limit results to repositories of the specified type. GitHub uses `all` when this is absent.                                       |
  | `sort`      | [RepoSort](/charter/charter/packs/github/repos/objects#reposort)            | The property to sort the results by. GitHub uses `created` when this is absent.                                                   |
  | `direction` | [SortDirection](/charter/charter/packs/github/issues/objects#sortdirection) | The order to sort by. GitHub's default depends on `sort`: `asc` when sorting by `full_name`, `desc` otherwise.                    |
</div>
