CoreVision Cloud ยท Event API
CoreVision Event Ingestion Endpoint
This endpoint is used by internal services to stream telemetry and business events
into CoreVision Cloud. If you see this page in a browser, the API is online.
Overview
CoreVision Cloud provides a low-latency channel for applications to send events, metrics and audit logs. Clients connect over HTTPS using a persistent streaming connection.
The primary public entrypoint is exposed on:
Hostcorevisioncloud.cloud
Port443 (TLS)
Path/api/v1/events
Example request
POST /api/v1/events HTTP/1.1
Host: corevisioncloud.cloud
Content-Type: application/json
{
"service": "billing",
"type": "transaction.created",
"ts": "2025-01-01T12:00:00Z",
"payload": {
"amount": 129.90,
"user_id": "usr_93f1a2"
}
}