---
title: "List project deploy keys"
method: GET
path: "/workspaces/{workspace}/projects/{project_key}/deploy-keys"
tags: ["Deployments"]
---

# List project deploy keys

`GET /workspaces/{workspace}/projects/{project_key}/deploy-keys`

Returns all deploy keys belonging to a project.

## Response `200`

Deploy keys matching the project

- PaginatedProjectDeployKeys — A paginated list of project deploy keys.
  - `size` integer — Total number of objects in the response. This is an optional element that is not provided in all responses, as it can be expensive to compute.
  - `page` integer — Page number of the current results. This is an optional element that is not provided in all responses.
  - `pagelen` integer — Current number of objects on the existing page. The default value is 10 with 100 being the maximum allowed value. Individual APIs may enforce different values.
  - `next` string, uri — Link to the next page if it exists. The last page of a collection does not have this value. Use this link to navigate the result set and refrain from constructing your own URLs.
  - `previous` string, uri — Link to previous page if it exists. A collections first page does not have this value. This is an optional element that is not provided in all responses. Some result sets strictly support forward navigation and never provide previous links. Clients must anticipate that backwards navigation is not always available. Use this link to navigate the result set and refrain from constructing your own URLs.
  - `values` ProjectDeployKey[]
    - `type` string, required
    - `key` string — The deploy key value.
    - `project` Project — A Bitbucket project. Projects are used by teams to organize repositories.
      - `type` string, required
      - `links` object
        - `html` object — A link to a resource related to this object.
          - `href` string, uri
          - `name` string
        - `avatar` object — A link to a resource related to this object.
          - `href` string, uri
          - `name` string
      - `uuid` string — The project's immutable id.
      - `key` string — The project's key.
      - `owner` Team — A team object.
        - `type` string, required
        - `links` object — Links related to a Team.
          - `avatar` Link — A link to a resource related to this object.
            - `href` string, uri
            - `name` string
          - `self` Link — A link to a resource related to this object.
            - `href` string, uri
            - `name` string
          - `html` Link — A link to a resource related to this object.
            - `href` string, uri
            - `name` string
          - `members` Link — A link to a resource related to this object.
            - `href` string, uri
            - `name` string
          - `projects` Link — A link to a resource related to this object.
            - `href` string, uri
            - `name` string
          - `repositories` Link — A link to a resource related to this object.
            - `href` string, uri
            - `name` string
        - `created_on` string, date-time
        - `display_name` string
        - `uuid` string
      - `name` string — The name of the project.
      - `description` string
      - `is_private` boolean — Indicates whether the project is publicly accessible, or whether it is private to the team and consequently only visible to team members. Note that private projects cannot contain public repositories.
      - `created_on` string, date-time
      - `updated_on` string, date-time
      - `has_publicly_visible_repos` boolean — Indicates whether the project contains publicly visible repositories. Note that private projects cannot contain public repositories.
    - `comment` string — The comment parsed from the deploy key (if present)
    - `label` string — The user-defined label for the deploy key
    - `added_on` string, date-time
    - `last_used` string, date-time
    - `links` object
      - `self` object — A link to a resource related to this object.
        - `href` string, uri
        - `name` string
    - `created_by` Account — An account object.
      - `type` string, required
      - `links` AccountLinks — Links related to an Account.
        - `avatar` Link — A link to a resource related to this object.
          - `href` string, uri
          - `name` string
      - `created_on` string, date-time
      - `display_name` string
      - `uuid` string

## Other responses

- `403` — If the specified workspace or project is not accessible to the current user
- `404` — If the specified workspace or project does not exist

---

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