sinikoding
password87

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

ParameterTypeRequiredDefault
lengthnumberno20
countnumberno1
charsetletters+digits+symbols | letters+digits | lettersnoletters+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": ["…"] }
Try it

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.
Open the web version