Available nowLast updated: June 2026

Getting started

Send your first operational event to Lariba Cloud using a project, an Event Source, and a source-scoped API key.

Step 1

Create or select a project

Projects define the boundary for sources, events, quotas, and operational context.

Step 2

Create an Event Source

An Event Source represents a known producer such as a backend, website, ERP, worker, service, or integration.

Step 3

Copy the generated source API key

Each source receives a source-linked API key. Store it securely and use it only from the producer that owns the source.

Step 4

Send your first event

Post a structured JSON event to the ingestion API using the source API key and an idempotency key.

Step 5

Verify the event

Open the Event Explorer to confirm that the event was accepted and is searchable.

Example request

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"
    }
  }'
Use the live API base URL configured for your environment. During local development, you can use your local backend URL instead.