Quick Start
- Create an account and sign in.
- Open the dashboard and copy your API key.
- Test one endpoint from terminal or your app.
First Request
curl -X POST "https://webfry.dev/api/password_check" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{"password":"MySecurePassword123!"}'
Response Shape
{
"score": 4,
"label": "Very Strong",
"feedback": [],
"entropy": 78.42
}