Get Challenging Words by ISBN
Overview
Use this call to get a list of vocab words from a book that are more challenging than the text. A word is considered more challenging when is has a higher Lexile measure than the measure for the book. To select a book you will pass the ISBN for the book as text, not as an integer.
You can use options to customize the list of returned words.
Parameters
Parameter | Type | Description |
---|---|---|
text |
String |
The ISBN for the text you want to extract vocabulary words from. The ISBN must be passed as a string, not as an integer. |
options |
Struct |
The options argument is optional. If provided it can contain the
following:
|
Response
This returns a list of challenging vocabulary words from the book. By default, 10
words are returned unless you have set a different
max_word_count
.
Example
This is an example of how to make the call using
Java.
import xmlrpclib rpc = xmlrpclib.ServerProxy('https://user:pass@vocabulary.lexile.com/API') vocab_words = pv.vocab.get_challenging_words_isbn('9780140435313')