Skip to main content

1. Create an organisation and project

Sign up at streamlogia.com. On first login you will be prompted to create an organisation. Once created, open it and create a project — this is where your logs will live. Note the Project ID shown on the project page. You will need it in every ingest request.

2. Get your API key

Click API Keys in the left sidebar. Your key is already available — click Copy or Show to reveal it.

3. Send your first log

curl -X POST https://api.streamlogia.com/v1/ingest \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "projectId": "YOUR_PROJECT_ID",
    "level": "INFO",
    "message": "Hello from Streamlogia!",
    "source": "quickstart"
  }'

4. See it in the dashboard

Open your project’s Logs tab. Your entry appears within milliseconds.

Next steps

Ingest reference

Full field list and error codes

Authentication

Key rotation and security tips

SDK guides

Framework integrations