Skip to main content
GET
/
projects
/
{id}
/
env-vars
List environment variables
curl --request GET \
  --url https://bugzy.ai/api/v1/projects/{id}/env-vars \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "name": "BASE_URL",
      "has_value": true,
      "is_secret": true,
      "environment_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://www.bugzy.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Project API key (bzy_proj_*). Generate in Dashboard → Project Settings → API Key.

Path Parameters

id
string<uuid>
required

Query Parameters

environment_id
string<uuid>

Response

200 - application/json

List of env var names (never values)

data
object[]