Post Telemetry Batches
Send compressed JSON trace or payload events directly to the global ingress engine. Ideal for stateless tracking scripts or high-performance background pipelines.
POST https://yourdomain.netlify.app/api/v1/telemetry
Content-Type: application/json
X-Vortex-Auth: vt_live_8324fbfec3a241e1bc832
{
"events": [
{
"event": "transaction.success",
"timestamp": 1715892349,
"properties": {
"amount": 299.00,
"region": "us-east-1"
}
}
]
}
curl -X POST https://yourdomain.netlify.app/api/v1/telemetry \
-H "Content-Type: application/json" \
-H "X-Vortex-Auth: vt_live_8324" \
-d '{"event":"ping"}'
{
"status": "success",
"ingested_batches": 1,
"node": "netlify-edge-router-4",
"latency_ms": 4
}