---
title: "Get a project"
method: GET
path: "/projects/{project_id}"
tags: ["projects"]
---

# Get a project

`GET /projects/{project_id}`

Gets a project by its `id`. Returns a `404 Not Found` status if projects are disabled. If you do not have sufficient privileges to perform this action, a `401 Unauthorized` or `410 Gone` status is returned.

## Path parameters

- `project_id` integer, required

## Response `200`

Response

- Project — Projects are a way to organize columns and cards of work.
  - `owner_url` string, uri, required
  - `url` string, uri, required
  - `html_url` string, uri, required
  - `columns_url` string, uri, required
  - `id` integer, required
  - `node_id` string, required
  - `name` string, required — Name of the project
  - `body` string, nullable, required — Body of the project
  - `number` integer, required
  - `state` string, required — State of the project; either 'open' or 'closed'
  - `creator` NullableSimpleUser, nullable, required — A GitHub user.
    - `name` string, nullable
    - `email` string, nullable
    - `login` string, required
    - `id` integer, required
    - `node_id` string, required
    - `avatar_url` string, uri, required
    - `gravatar_id` string, nullable, required
    - `url` string, uri, required
    - `html_url` string, uri, required
    - `followers_url` string, uri, required
    - `following_url` string, required
    - `gists_url` string, required
    - `starred_url` string, required
    - `subscriptions_url` string, uri, required
    - `organizations_url` string, uri, required
    - `repos_url` string, uri, required
    - `events_url` string, required
    - `received_events_url` string, uri, required
    - `type` string, required
    - `site_admin` boolean, required
    - `starred_at` string
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `organization_permission` 'read' | 'write' | 'admin' | 'none' — The baseline permission that all organization members have on this project. Only present if owner is an organization.
  - `private` boolean — Whether or not this project can be seen by everyone. Only present if owner is an organization.

## Other responses

- `304` — Not modified
- `401` — Requires authentication
- `403` — Forbidden

---

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