ZeqAdaptiveLearning
Adaptive learning engine using R(t)-modulated knowledge state estimation. Item response theory (IRT) with Zeqond-paced mastery gates, spaced repetition scheduling.
| Endpoint | POST /api/edu/adaptive |
| Auth | api-key |
| Rate limit | 30/min |
| Category | education |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
studentId | string | Yes | Learner identifier. |
responses | array | Yes | [{ itemId, correct, responseTime_ms }] |
domain | string | No | Subject area. |
Returns
{ abilityEstimate, nextItems, masteryLevel, retentionSchedule, zeqond }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"studentId": "<studentId>",
"responses": [],
"domain": "<domain>"
}' \
"https://zeqsdk.com/api/edu/adaptive"
This protocol is a named building block — one of the operations you
compose inside a state contract. Call it directly with
the request above, or invoke it from a contract that fires on your machine's
clock. Browse the whole library at GET /api/protocols; fetch this one at
GET /api/protocols/zeq-adaptive-learn.