---
title: "List issues assigned to the authenticated user"
method: GET
path: "/user/issues"
tags: ["Issues"]
---

# List issues assigned to the authenticated user

`GET /user/issues`

Lists issues across all repositories assigned to the authenticated user. Also available at `GET /issues`.

## Query parameters

- `page` integer
- `state` 'open' | 'closed'

## Response `200`

Success

- Issue[]
  - `id` integer
  - `number` integer
  - `state` 'open' | 'closed'
  - `title` string
  - `body` string
  - `user` User
    - `id` integer
    - `username` string
    - `login` string — Alias of username for GitHub API compatibility
    - `full_name` string
    - `email` string, email
    - `avatar_url` string
  - `labels` Label[]
    - `id` integer
    - `name` string
    - `color` string
    - `url` string
  - `assignee` User
    - `id` integer
    - `username` string
    - `login` string — Alias of username for GitHub API compatibility
    - `full_name` string
    - `email` string, email
    - `avatar_url` string
  - `milestone` Milestone
    - `id` integer
    - `state` 'open' | 'closed'
    - `title` string
    - `description` string
    - `open_issues` integer
    - `closed_issues` integer
    - `closed_at` string, date-time, nullable
    - `due_on` string, date-time, nullable
  - `comments` integer
  - `pull_request` object, nullable
  - `created_at` string, date-time
  - `updated_at` string, date-time

---

[API](https://skmtc.net/gogs/apis/gogs-api.md) · [All operations](https://skmtc.net/gogs/apis/gogs-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gogs/gogs-api/versions/87e2da32266c/schema)
