API Keys

Manage authentication keys for your integration

Active Keys

2

Revoked Keys

0

Your API Keys

NameKeyStatusLast UsedCreatedActions
mykey
sk_live_••••••••Active
12/20/2025
9:45:08 PM
12/20/2025
9:16:06 PM
Development Key
sk_live_••••••••Active
Never
12/20/2025
8:44:45 PM

API Key Security Best Practices

  • • Never commit API keys to version control
  • • Store keys securely in environment variables
  • • Use different keys for development and production
  • • Rotate keys regularly for enhanced security
  • • Revoke keys immediately if compromised
  • • Monitor key usage via the "Last Used" timestamp

Using Your API Key

Include your API key in the Authorization header:

curl -X POST http://localhost:3001/v1/usage \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "customerId": "cus_abc123",
    "usageType": "api_call",
    "quantity": 1
  }'