Skip to main content
GET
/
api
/
v1
/
variables
List variables
curl --request GET \
  --url https://api.example.com/api/v1/variables \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "name": "DEPLOY_ENV",
      "value": "production",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "description": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Raw dev token passed as Authorization: Bearer fabro_dev_... when server.auth.methods includes dev-token.

Response

200 - application/json

Variable list

List of stored variables.

data
object[]
required