v68

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

Get an item for a user owned project

Get a specific item from a user-owned project.

get/users/{username}/projectsV2/{project_number}/items/{item_id}

Path parameters

project_numberinteger required

The project's number.

usernamestring required

The handle for the GitHub user account.

item_idinteger required

The unique identifier of the project item.

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

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"
}