Send the first event
Prepare a fictional request, inspect the response, and understand the sample identifiers.
Open quickstartDocumentation overview
Searchable guides, direct code examples, and connected operational references in one static documentation surface.
Search runs locally in the browser. No query is transmitted.
Every guide leads toward a working sample page or a deeper reference surface.
Prepare a fictional request, inspect the response, and understand the sample identifiers.
Open quickstartExplain signatures, test keys, scopes, and safe example practices.
Read authenticationDescribe retries, replay, idempotency, and delivery-state concepts.
View event endpointsSeparate development, test, and live configuration in the content model.
Review environmentsConnect identifiers, policy results, region, latency, and response status.
View dashboard demoUse service status, incident notes, and a clear resolution timeline.
Open status pageNo guide matches this search. Try a broader term.
This example points to a reserved domain and does not connect to a real service. Replace the values only after connecting your own backend.
curl https://api.novahttp.example/v1/events \
-H "Authorization: Bearer demo_key" \
-H "Content-Type: application/json" \
-d '{"type":"invoice.created","id":"evt_demo_813"}'const response = await fetch(
"https://api.novahttp.example/v1/events",
{
method: "POST",
headers: { Authorization: "Bearer demo_key" },
body: JSON.stringify({ type: "invoice.created" })
}
);import requests
response = requests.post(
"https://api.novahttp.example/v1/events",
headers={"Authorization": "Bearer demo_key"},
json={"type": "invoice.created"},
)The supplied strings are clearly marked as demo values. Never paste real keys, tokens, or production identifiers into template source or screenshots.
Show success, validation errors, empty results, and retry guidance. A static successful response alone does not teach implementation.
Move from the guide to the interactive local API reference, or choose an SDK pattern for implementation-specific examples.