Base URL
Authentication
Authenticate every request with an API key as a bearer token:401.
Request limits
Requests over either limit return
413. Split large workloads into multiple batches.
Errors
Every error response has the same shape:Retries
- Retry on
5xx,503, and network failures, with backoff. - Do not retry
400,401, or413— fix the request instead. - Reuse the same event
idvalues when retrying. Events are deduplicated by ID, so retries never create duplicates — see Delivery guarantees.
Success
A successful request returns202 Accepted: events are validated and durably queued, and will appear in the dashboard within seconds. See POST /v1/ingest-events.