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 the SDK

Use @amlexiahq/node or amlexia unless you need a custom language. SDKs handle batching, retries, and shutdown flush.