---
title: "List issue field values for an issue"
method: GET
path: "/repos/{owner}/{repo}/issues/{issue_number}/issue-field-values"
tags: ["issues"]
---

# List issue field values for an issue

`GET /repos/{owner}/{repo}/issues/{issue_number}/issue-field-values`

Lists all issue field values for an issue.

## Path parameters

- `owner` string, required
- `repo` string, required
- `issue_number` integer, required

## Query parameters

- `per_page` integer
- `page` integer

## Response `200`

Response

- IssueFieldValue[]
  - `issue_field_id` integer, required — Unique identifier for the issue field.
  - `issue_field_name` string — The human-readable name of the issue field.
  - `node_id` string, required
  - `data_type` 'text' | 'single_select' | 'multi_select' | 'number' | 'date', required — The data type of the issue field
  - `value` union, required — The value of the issue field
    - string
    - number
    - integer
  - `single_select_option` object, nullable — Details about the selected option (only present for single_select fields)
    - `id` integer, required — Unique identifier for the option.
    - `name` string, required — The name of the option
    - `color` string, required — The color of the option
  - `multi_select_options` object[], nullable — Details about the selected options
    - `id` integer, required — Unique identifier for the option.
    - `name` string, required — The name of the option
    - `color` string, required — The color of the option

## Other responses

- `301` — Moved permanently
- `404` — Resource not found
- `410` — Gone

---

[API](https://skmtc.net/github/apis/github-v3-rest-api-2.md) · [All operations](https://skmtc.net/github/apis/github-v3-rest-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/github/github-v3-rest-api-2/versions/8ae6d0c8716e/schema)
