---
title: "List Shared Values in an Application"
method: GET
path: "/orgs/{orgId}/apps/{appId}/values"
tags: ["public", "Value"]
---

# List Shared Values in an Application

`GET /orgs/{orgId}/apps/{appId}/values`

The returned values will be the "base" values for the Application. The overridden value for the Environment can be retrieved via the `/orgs/{orgId}/apps/{appId}/envs/{envId}/values` endpoint.

## Path parameters

- `orgId` string, required
- `appId` string, required

## Response `200`

A possibly empty list of Values.

- ValueResponse[]
  - `created_at` string, date-time, required
  - `description` string, required — A Human friendly description of what the Shared Value is.
  - `is_secret` boolean, required — Specified that the Shared Value contains a secret.
  - `key` string, required — The unique key by which the Shared Value can be referenced. pattern: ^[a-zA-Z0-9._-]+$.
  - `secret_key` string, nullable, required — Location of the secret value in the secret store.
  - `secret_store_id` string, nullable, required
  - `secret_version` string, nullable, required — Version of the current secret value as returned by the secret store.
  - `source` 'app' | 'env', required — Source of the value, "app" for app level, "env" for app env level.
  - `updated_at` string, date-time, required
  - `value` string, required — The value that will be stored. (Will be always empty for secrets.)

---

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