Docs / Quickstart
Quickstart
From empty account to a grouped issue in the dashboard — usually in a few minutes.
- 01
Create an account
Sign up on the dashboard and create your organization.
- 02
Create a project
Add a project for the app you want to monitor — one project per deployable surface works best.
- 03
Create an API key
Generate a project-scoped ingest key. It is shown once — store it securely.
- 04
Send your first event
Post a test event over HTTP (below) or with an SDK from the SDKs hub.
- 05
Open Issues
Refresh the dashboard. Your event is fingerprinted into an issue ready to triage.
Send with HTTP
Replace the API key and run the request. Any stack that can POST JSON works.
first-event.shbash
curl -X POST https://api.newtalaria.com/v1/events \
-H "Content-Type: application/json" \
-H "X-API-Key: tal_live_YOUR_KEY" \
-d '{
"message": "Hello from curl",
"level": "error",
"environment": "development"
}'Send with an SDK
Prefer a client library? Pick your language from the SDKs hub — Dart, Flutter, JavaScript, PHP, and Silverstripe.