Documentation / Getting Started

Getting Started

Set up WebFry quickly and make your first API requests.

Quick Start

  1. Create an account and sign in.
  2. Open the dashboard and copy your API key.
  3. 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
}

Where To Next