Password Generator
Generate strong random passwords with configurable length and character sets.
POST /api/v1/password- API version
- v1
- Output schema
- 2
The endpoint path is always /v1. The schema number below tracks this tool's output shape and changes independently.
Create a free account →Parameters
| Parameter | Type | Required | Default |
|---|---|---|---|
| length | number | no | 20 |
| count | number | no | 1 |
| charset | letters+digits+symbols | letters+digits | letters | no | letters+digits+symbols |
Request
curl -X POST https://sinikoding.dev/api/v1/password \ -H 'content-type: application/json' \ -H 'x-api-key: tk_live_…' \ -d '{"length":20,"count":1,"charset":"letters+digits+symbols"}'
Returns
"output": { "kind": "list", "items": ["…"] }
Calls a same-origin sandbox endpoint, not /api/v1. No key needed, capped at 15 requests a minute.
Request
curl -X POST https://sinikoding.dev/api/v1/password \ -H 'content-type: application/json' \ -H 'x-api-key: tk_live_…' \ -d '{"length":"20","count":"1","charset":"letters+digits+symbols"}'
Response
Send a request to see the response.