| title | Quickstart |
|---|---|
| description | Ship your first log in under 2 minutes. |
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.
Click API Keys in the left sidebar. Your key is already available — click Copy or Show to reveal it.
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"
}'import { LogIngestorClient } from "@streamlogia/javascript-sdk";
const client = new LogIngestorClient({
apiKey: "YOUR_API_KEY",
projectId: "YOUR_PROJECT_ID",
source: "quickstart",
});
await client.info("Hello from Streamlogia!");
await client.close();from logingestor import LogIngestorClient
client = LogIngestorClient(
api_key="YOUR_API_KEY",
project_id="YOUR_PROJECT_ID",
source="quickstart",
)
client.info("Hello from Streamlogia!")
client.close()import (
"context"
"github.com/streamlogia/go-sdk/logingestor"
)
client := logingestor.New(
"https://api.streamlogia.com",
"YOUR_API_TOKEN",
"YOUR_PROJECT_ID",
logingestor.WithSource("quickstart"),
)
defer client.Close()
client.Info(context.Background(), "Hello from Streamlogia!", nil)Open your project's Logs tab. Your entry appears within milliseconds.
Full field list and error codes Key rotation and security tips Framework integrations