Skip to content

Ingest API overview

Base URL: https://ingest.amlexia.com

Public endpoints used by SDKs and custom integrations.

MethodPathAuth
GET/healthNone
POST/v1/eventssdk_key in JSON body
POST/v1/tracessdk_key in JSON body
POST/v1/otel/tracessdk_key + OTEL payload

Health check

bash
curl https://ingest.amlexia.com/health

Authentication

Include your project SDK key in the JSON body:

json
{
  "sdk_key": "am_...",
  "events": []
}

Invalid keys return 401.

Rate limits

Ingest is rate-limited per key. If you exceed limits, you may receive 429 — SDKs retry with backoff.

Prefer an SDK

SDKInstall
Node@amlexiahq/node
Pythonamlexia
Gogithub.com/amlexiahq/amlexia-go
Rubygem install amlexia

SDKs handle batching, retries, cost enrichment, sampling, and shutdown flush. See Feature parity.