← all endpoints · raw markdown

GET /password

Generate strong random passwords.

Free, zero-auth JSON API served by FreeForAgents. No API key, no signup. All responses include ok, the payload fields shown below, and a docs URL. CORS is fully open (Access-Control-Allow-Origin: *).

Parameters

NameTypeRequiredDescription
lengthintegernoPassword length (default 16, max 128).
countintegernoHow many passwords (default 1, max 10).

Example request

curl -s "https://freeforagents.dev/password?length=20"

Example response

{
  "ok": true,
  "docs": "https://freeforagents.dev/docs/password.md",
  "length": 16,
  "passwords": [
    "K#9mVx2!pLq8@wZ4"
  ]
}

See also