Everything developers need to integrate Vault's powerful features into their applications. Comprehensive APIs, SDKs, and documentation.
Built by developers, for developers. Our APIs are designed to be intuitive, powerful, and easy to integrate.
Get up and running in minutes with our comprehensive SDKs and documentation.
Enterprise-grade security with OAuth 2.0, API keys, and rate limiting.
Clean, intuitive REST APIs that follow industry best practices.
Native SDKs for all popular programming languages and frameworks.
Explore our comprehensive API endpoints with live examples.
/api/v1/vault/data
Retrieve encrypted vault data
curl -X GET "https://api.vault.com/v1/vault/data" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
/api/v1/vault/store
Store data in vault with encryption
curl -X POST "https://api.vault.com/v1/vault/store" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"data": "sensitive_information", "encrypt": true}'
/api/v1/vault/update
Update existing vault entry
curl -X PUT "https://api.vault.com/v1/vault/update/123" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"data": "updated_information"}'
Native SDKs for your favorite programming languages.
v2.1.0 • 500K+ downloads
npm install @vault/sdk-js
const Vault = require('@vault/sdk-js');
const client = new Vault('your-api-key');
v1.8.0 • 300K+ downloads
pip install vault-sdk
import vault
client = vault.Client(api_key='your-api-key')
v1.5.0 • 200K+ downloads
<dependency>
<groupId>com.vault</groupId>
<artifactId>vault-sdk</artifactId>
<version>1.5.0</version>
</dependency>
v1.3.0 • 150K+ downloads
go get github.com/vault/vault-go
import "github.com/vault/vault-go"
Everything you need to build amazing applications with Vault.
Complete API reference with examples
Open source examples and libraries
Test APIs directly in your browser
Quick start guides and tutorials
Join thousands of developers who have already integrated Vault into their applications. Get started with our free tier and scale as you grow.