Getting Started

Welcome to NextLogs, a developer-focused SaaS logging platform.

This documentation is structured to help you:

  • Connect your app to NextLogs
  • Send logs and errors with confidence
  • Use the API for automation and analysis

A minimal mental model

You’ll typically do three things:

  1. Create a project in your NextLogs dashboard.
  2. Send log events to the ingestion endpoint using your API key.
  3. Browse logs, errors, and metadata in the dashboard.

Example: send a single event

curl -X POST "https://api.nextlogs.example/v1/logs" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "message": "User signed in",
    "level": "info",
    "service": "web",
    "tags": ["auth"]
  }'

Inline code looks like event_id or service.