API Keys
Manage your API keys for accessing Finstack primitives
Keep your API keys secure. Never share them in client-side code or public repositories. Use environment variables or secret management to store them securely.
Your API Keys
These keys allow you to authenticate with the Finstack API
Using Your API Key
Include your API key in the Authorization header:
Authorization: Bearer sk_live_xxxOr use the SDK:
import { Finstack } from '@finstack/sdk'
const finstack = new Finstack({
apiKey: process.env.FINSTACK_API_KEY
})