🧪 SANDBOX ENVIRONMENT

Test Our API Integration

Get instant sandbox access to test SecurePass Pro API. No commitment required - perfect for evaluating integration possibilities.

Get Sandbox API Key

Quick Start Guide

Basic Password Generation

curl -X POST https://api.securepasspro.co/sandbox/password \
  -H "Authorization: Bearer YOUR_SANDBOX_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "length": 16,
    "includeUppercase": true,
    "includeNumbers": true,
    "includeSymbols": false
  }'

JavaScript Integration

const response = await fetch('https://api.securepasspro.co/sandbox/password', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_SANDBOX_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    length: 20,
    includeUppercase: true,
    includeNumbers: true,
    includeSymbols: true
  })
});

const data = await response.json();
console.log('Generated password:', data.password);

Sandbox Features

100 calls/day
10 calls/minute
Up to 64 chars
All character types
7-day validity
CORS enabled

🧪 Sandbox Limitations

• Limited to 100 API calls per day and 10 calls per minute

• Maximum password length of 64 characters

• Keys expire after 7 days

• No SLA guarantees (for testing only)

• Production features require Enterprise plan

Ready for Production?

Contact our enterprise team to discuss production API access, custom rate limits, and enterprise features.