# List secret keys of a project

Endpoint: GET /api/projects/{id}/secrets
Version: 1.0
Security: ApiKeyAuth

## Path parameters:

  - `id` (integer, required)
    project id

## Response 200 fields (application/json):

  - `secrets` (array, required)
    array of RestSecretMetadata "{ key: key1 }"
    Example: "[{key: key1}, {key: key2}]"

  - `secrets.key` (string, required)
    key name
    Example: "td.apikey"


