Documentation

Build on Sereni LRS

Clear, developer-first docs to help you send, query, and act on xAPI data quickly.

Getting Started

Send your first xAPI statement in minutes. Grab an API key from your dashboard, then POST any valid xAPI statement to the endpoint below.

curl -X POST https://api.serenilrs.com/xapi/statements \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "actor": { "mbox": "mailto:[email protected]" },
    "verb": { "id": "http://adlnet.gov/expapi/verbs/completed" },
    "object": { "id": "https://acme.com/courses/safety-101" }
  }'