word_list
Retrieve paginated vocabulary entries from the ASD-STE100 standard to process the full word list. Use offset and max_results to control the page size.
Instructions
Return all vocabulary entries.
Only use when you need to process the full vocabulary. Use word_count instead if you only need the total. This operation is expensive and returns a large number of entries -- the vocabulary holds thousands of them.
Parameters
max_results: The maximum number of vocabulary entries to return (default 25). offset: The number of vocabulary entries to skip before returning results, for pagination (default 0).
Returns
WordResult
results holds the (possibly empty) page of vocabulary entries
after applying offset and max_results. total is the
full entry count before pagination, and truncated tells the
caller whether more entries exist beyond this page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| offset | No | The number of matching entries to skip before returning results, for pagination. | |
| max_results | No | The maximum number of matching entries to return. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| total | Yes | ||
| offset | Yes | ||
| results | No | ||
| truncated | Yes | ||
| max_results | Yes |