Game Service
Game service is a set of APIs to power e-Learning games
Get Words
GET
https://dtml.org/api/GameService/Words/?step=1
Gets Words for student. The API uses either school setting or ML to determine the words. In order to minimize JSON response payload, the images are send back without full URI. The root URI for images is https://dtml.blob.core.windows.net/content/words/{filename}
Query Parameters
expand
boolean
If true, adds additional fields to the response
withImages
boolean
If set to true only returns words with images
lang
string
two letter code for language of the user
step
number
Level for the words to be returned
top
number
Maximum number of words to return
Headers
Authentication
string
If authenticated the system will use user data to select appropriate words for the user. If not, generic word selection algorithm will be applied.
Check Word
GET
https://dtml.org/api/GameService/CheckWord/?source=apple&guess=manzana&lan=es
Verifies translation of the words
Query Parameters
lan
string
User language
guess
string
User guessed word
source
string
English words to check
Score Phrase
GET
https://dtml.org/api/GameService/ScorePhrase/?phrase=hello%20world&lang=ru
Gets a numeric complexity score for English phrase
Query Parameters
success
string
Optional indicator if game considered the phrase valid.
source
string
Optional name of the game or learning module
lang
string
User language. Score might depend on user native language
phrase
string
Phrase to score
Record reinforcement
GET
https://dtml.org/api/GameService/Reinforcement/?value=apple&type=word&source=test
The method records information about game activity into user reinforcement table for processing. The examples of reinforcements can be missed words, or incorrect answers, or any other information game wants to record about user completing game objectives
Query Parameters
source
string
Learning module or a game which is making the call
type
string
Description of the value. For example, "word", "subject", "phrase", "voice"
value
string
Value to record. Often the value is the word which user did not recognized.
Headers
Authentication
string
Required. If Authentication header is not provided the method will not record data.
Last updated