v56

latestOpenAPI 3.0.3MITraw.githubusercontent.com2026-08-011,4581,08113.3 MB
projects

List items for a user project view

List items in a user project with the saved view's filter applied.

get/users/{username}/projectsV2/{project_number}/views/{view_number}/items

Path parameters

project_numberinteger required

The project's number.

usernamestring required

The handle for the GitHub user account.

view_numberinteger required

The number that identifies the project view.

Query parameters

string
OR
string[]

Limit results to specific fields, by their IDs. If not specified, the title field will be returned.

Example: fields[]=123&fields[]=456&fields[]=789 or fields=123,456,789

beforestring

A cursor, as given in the Link header. If specified, the query only searches for results before this cursor. For more information, see "Using pagination in the REST API."

afterstring

A cursor, as given in the Link header. If specified, the query only searches for results after this cursor. For more information, see "Using pagination in the REST API."

per_pageinteger

The number of results per page (max 100). For more information, see "Using pagination in the REST API."

Response

Response

idnumber required

The unique identifier of the project item.

node_idstring

The node ID of the project item.

project_urlstring uri

The API URL of the project that contains this item.

content_type'Issue' | 'PullRequest' | 'DraftIssue' required

The type of content tracked in a project item

contentobject nullable

The content of the item, which varies by content type.

created_atstring date-time required

The time when the item was created.

updated_atstring date-time required

The time when the item was last updated.

archived_atstring date-time nullable required

The time when the item was archived.

item_urlstring uri nullable

The API URL of this item.

fieldsobject[]

The fields and values associated with this item.

Example response

[
  {
    "project_url": "https://api.github.com/users/monalisa/2/projectsV2/3",
    "creator": {
      "login": "octocat",
      "id": 1,
      "node_id": "MDQ6VXNlcjE=",
      "avatar_url": "https://github.com/images/error/octocat_happy.gif",
      "gravatar_id": "41d064eb2195891e12d0413f63227ea7",
      "url": "https://api.github.com/users/octocat",
      "html_url": "https://github.com/octocat",
      "followers_url": "https://api.github.com/users/octocat/followers",
      "following_url": "https://api.github.com/users/octocat/following{/other_user}",
      "gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
      "starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
      "subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
      "organizations_url": "https://api.github.com/users/octocat/orgs",
      "repos_url": "https://api.github.com/users/octocat/repos",
      "events_url": "https://api.github.com/users/octocat/events{/privacy}",
      "received_events_url": "https://api.github.com/users/octocat/received_events",
      "type": "User",
      "starred_at": "\"2020-07-09T00:17:55Z\"",
      "user_view_type": "public"
    },
    "created_at": "2022-04-28T12:00:00Z",
    "updated_at": "2022-04-28T12:00:00Z",
    "archived_at": "2022-04-28T12:00:00Z",
    "item_url": "https://api.github.com/users/monalisa/2/projectsV2/items/3"
  }
]