GET
github_repos_list_for_org.py
Requires
repo, read:user. Pages by number: page with per_page.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List an organization’s repositories. Unlike the personal listing, type and sort combine freely here.
from charter.packs import github
result = await github.repos_list_for_org.ainvoke({"org": ...})
repo, read:user. Pages by number: page with per_page.| Field | Type | Description |
|---|---|---|
org * | string | The organization name. The name is not case sensitive. |
| Field | Type | Description |
|---|---|---|
perPage | integer | The number of results per page (max 100). Defaults to 30. ≥ 1; ≤ 100; defaults to 30 |
page | integer | The page number of the results to fetch. Defaults to 1. ≥ 1; defaults to 1 |
type | OrgRepoType | Limit results to repositories of the specified type. GitHub uses all when this is absent. |
sort | RepoSort | The property to sort the results by. GitHub uses created when this is absent. |
direction | SortDirection | The order to sort by. GitHub’s default depends on sort: asc when sorting by full_name, desc otherwise. |
Was this page helpful?