The student has taken some number of items, each represented by an item
ID.
The number of items answered correctly is known.
URL
POST /api/score/items/ids/standard
Request
The following parameters are required in the request. An example is provided in the
Code Example section.
Parameter
Type
Description
items
Array
Array of item objects. Each item object is a dictionary with required
parameters:
itemid
String
ID of item used in the request body. Must
have a prefix of “Q”, “L”, or “S”. MetaMetrics will
provide these IDs.
numberCorrect
Integer
Raw count of items answered correctly by the student.
Response
This returns an object that contains the computed ability and uncertainty. See Scoring Service Response Codes for an explanation
of error codes that might be returned.
Parameter
Type
Description
ability
Integer
The student’s new ability estimate.
uncertainty
Integer
Uncertainty associated with the student’s new ability estimate.
framework
String
Either Lexile or Quantile Framework used to produce the
measure.
apiVersion
String
The current version number for the API.
Code Examples
The following show examples of the request followed by the response. The Python
example is written for use with Python 3 and above.