Contents
Skopos collects logs from your app via HTTP. Send log events to our ingest endpoint using your project API key.
1. Get your project API key from the dashboard
2. Send your first log event
3. View it in the Logs tab
curl -X POST https://api.skopos.ink/v1/ingest \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '[{
"level": "ERROR",
"message": "Database connection failed",
"service": "api",
"event_metadata": { "db": "postgres", "retry": 3 }
}]'Your API Key
YOUR_API_KEY