$POST /v1/courses→ 201 Created
One request in.
A whole course out.
We're putting Vixi's course engine behind an API. Send a topic, or your own content, and get back a gamified, Duolingo-like course.
Imagine it inside
LMS & e-learning platforms
Auto-generate courses from your existing content library.
HR & onboarding tools
Turn policies and playbooks into training in minutes.
Communities & creator apps
Give every creator a “course-ify this” button.
vixi-api terminal
$ curl -X POST https://api.vixiai.co/v1/courses \
-H "Authorization: Bearer vx_live_••••••••" \
-d '{ "topic": "Onboarding 101", "lessons": 8 }'
# 201 Created, course generating
{
"id": "crs_x7k2f9",
"status": "generating",
"voiceover": "included",
"share_url": "learn.vixiai.co/preview/crs_x7k2f9"
}
$