FAQ
Where do I find my API key?
In the dashboard, open your project and copy the apiKey.
What should I put in service?
Use service to identify the source of the event (for example, web, auth, or payments).
Can I send errors?
Yes—use level: "error" for error events.
curl -X POST "https://api.nextlogs.example/v1/logs" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"message": "Something went wrong",
"level": "error",
"service": "web"
}'