Quick start

Send your first log to LogFlow in under 2 minutes.

1. Create a project

Sign in to app.getlogflow.com and create a new project. You'll get an API key starting with lf_.

2. Send a log

Send a POST request to the ingest endpoint:

bash
curl -X POST https://api.getlogflow.com/v1/logs \
  -H "Authorization: Bearer lf_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "level": "info",
    "message": "Hello from LogFlow!",
    "service": "my-app"
  }'

3. View in dashboard

Open Logs Explorer in your dashboard — your log should appear within a second.

💡
Use level: "error" or level: "fatal" to trigger anomaly detection and alerts.

Next steps