Back to Tool
🔑
Password Generator API
Generate secure random passwords via API
Endpoint
POST
/api/v1/password-generatorAuthentication
Include your API key in the request header:
X-API-Key: your_api_key_hereGet your API key from the Dashboard
Request Body
Content-Type: application/json
| Field | Type | Required | Description |
|---|---|---|---|
| length | number | No | Password length (4-128, default: 16) |
| count | number | No | Number of passwords (1-100, default: 1) |
| uppercase | boolean | No | Include uppercase letters (default: true) |
| lowercase | boolean | No | Include lowercase letters (default: true) |
| numbers | boolean | No | Include numbers (default: true) |
| symbols | boolean | No | Include symbols (default: false) |
| excludeSimilar | boolean | No | Exclude similar characters (i, l, 1, L, o, 0, O) |
Response
| Field | Type | Description |
|---|---|---|
| success | boolean | Whether the operation was successful |
| passwords | array | Array of generated passwords |
Code Examples
curl -X POST https://tools.shubhambadgujar.com/api/v1/password-generator \
-H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{"length": 20, "count": 3, "symbols": true}'Rate Limits
- • 100 requests per minute
- • 10,000 requests per day
- • Max request size: 10MB
Need Help?
Contact us at support@shubhambadgujar.com