Create or select a project
Projects define the boundary for sources, events, quotas, and operational context.
Send your first operational event to Lariba Cloud using a project, an Event Source, and a source-scoped API key.
Projects define the boundary for sources, events, quotas, and operational context.
An Event Source represents a known producer such as a backend, website, ERP, worker, service, or integration.
Each source receives a source-linked API key. Store it securely and use it only from the producer that owns the source.
Post a structured JSON event to the ingestion API using the source API key and an idempotency key.
Open the Event Explorer to confirm that the event was accepted and is searchable.
Replace YOUR_SOURCE_API_KEY with the generated key for your Event Source.
curl -X POST "https://api.laribacloud.com/v1/events/ingest" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_SOURCE_API_KEY" \
-H "Idempotency-Key: demo-request-001" \
-d '{
"event_id": "evt_demo_001",
"event_type": "payment.failed",
"source_id": "src_demo",
"environment": "production",
"severity": "critical",
"payload": {
"amount": 49.99,
"currency": "EUR",
"reason": "card_declined"
}
}'