
Infisical Has a Free API: Open-Source Secret Management That Replaces HashiCorp Vault
What is Infisical? Infisical is an open-source secret management platform — an alternative to HashiCorp Vault, AWS Secrets Manager, and .env files. It stores, syncs, and rotates secrets across your infrastructure. The cloud free tier includes unlimited secrets for up to 5 team members. Quick Start # Install CLI brew install infisical/get-cli/infisical # Login infisical login # Initialize project infisical init # Run with secrets injected infisical run -- npm start Your app gets all secrets as environment variables — no .env files, no hardcoded keys. The REST API export INFISICAL_URL = "https://app.infisical.com/api" export INFISICAL_TOKEN = "your-service-token" Get Secrets curl -s " $INFISICAL_URL /v3/secrets/raw?workspaceId=YOUR_PROJECT_ID&environment=prod" \ -H "Authorization: Bearer $INFISICAL_TOKEN " | jq '.secrets[] | {key: .secretKey, value: .secretValue}' Create Secret curl -X POST " $INFISICAL_URL /v3/secrets/raw/STRIPE_KEY" \ -H "Authorization: Bearer $INFISICAL_TOKEN " \ -H "
Continue reading on Dev.to DevOps
Opens in a new tab


