> ## 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.

# issues_list_for_authenticated_user

> List the authenticated user's issues across every repository they can see — the agent's own queue. `filter` chooses between what is assigned to you, what you opened, what mentions you and everything visible. Pull requests appear here too, marked `is_pull_request`.

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

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

result = await github.issues_list_for_authenticated_user.ainvoke({})
```

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

## 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>                                                                                                                                                                                                                                   |
  | `filter`    | [IssueFilter](/charter/charter/packs/github/issues/objects#issuefilter)     | Which sorts of issues to return. `assigned` means issues assigned to you. `created` means issues created by you. `mentioned` means issues mentioning you. `subscribed` means issues you're subscribed to updates for. `all` or `repos` means all issues you can see, regardless of participation or creation. GitHub uses `assigned` when this is absent. |
  | `state`     | [IssueState](/charter/charter/packs/github/issues/objects#issuestate)       | Indicates the state of the issues to return. GitHub uses `open` when this is absent.                                                                                                                                                                                                                                                                      |
  | `labels`    | `string`                                                            | A list of comma separated label names. Example: `bug,ui,@high`.                                                                                                                                                                                                                                                                                           |
  | `sort`      | [IssueSort](/charter/charter/packs/github/issues/objects#issuesort)         | What to sort results by. GitHub uses `created` when this is absent.                                                                                                                                                                                                                                                                                       |
  | `direction` | [SortDirection](/charter/charter/packs/github/issues/objects#sortdirection) | The direction to sort the results by. GitHub uses `desc` when this is absent.                                                                                                                                                                                                                                                                             |
  | `since`     | `string`                                                            | Only show results that were last updated after the given time, in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`. <span className="field-constraints">format `date-time`</span>                                                                                                                                                                                  |
  | `collab`    | `boolean`                                                           | Include issues from repositories you are a collaborator on.                                                                                                                                                                                                                                                                                               |
  | `orgs`      | `boolean`                                                           | Include issues from your organizations' repositories.                                                                                                                                                                                                                                                                                                     |
  | `owned`     | `boolean`                                                           | Include issues from repositories you own.                                                                                                                                                                                                                                                                                                                 |
  | `pulls`     | `boolean`                                                           | Include pull requests alongside issues.                                                                                                                                                                                                                                                                                                                   |
</div>
