Retrieve the decrypted value of an environment variable of a project by id
GET
https://api.vercel.com/v1/projects/{idOrName}/env/{id}Retrieve the environment variable for a given project.
Request
import { Vercel } from "@vercel/sdk";
const vercel = new Vercel({ bearerToken: "<YOUR_BEARER_TOKEN_HERE>",});
async function run() { const result = await vercel.projects.getProjectEnv({ idOrName: "prj_XLKmu1DyR1eY7zq8UgeRKbA7yVLA", id: "<id>", teamId: "team_1a2b3c4d5e6f7g8h9i0j1k2l", slug: "my-team-url-slug", });
console.log(result);}
run();Response
{ "decrypted": "false", "type": "encrypted", "edgeConfigId": "example_id", "edgeConfigTokenId": "example_id", "createdAt": "123", "updatedAt": "123", "id": "icfg_1234567890", "key": "string", "target": [], "gitBranch": "string", "createdBy": "string", "updatedBy": "string", "sunsetSecretId": "example_id", "legacyValue": "string", "configurationId": "example_id", "visibility": "config", "contentHint": { "type": "redis-url", "storeId": "example_id" }, "internalContentHint": { "type": "flags-secret", "encryptedValue": "string" }, "comment": "string", "customEnvironmentIds": []}AuthorizationbearerToken
Default authentication mechanism
200Success
This is used to identify variables that have been migrated from type secret to sensitive.
Legacy now-encryption ciphertext, present after migration swaps value/vsmValue
User-facing config/secret model. When set, authoritative for new code paths when the env-var-config-secret-ui flag is enabled. Legacy rows omit this field; legacy rows omit it and callers fall back to existing
type behavior.400One of the provided values in the request query is invalid.
401The request is not authorized.
403You do not have permission to access this resource.
410Error