GnistAI GnistAI
Log in

Random Words

Random English word generator — 120 curated words across 4 types (noun, verb, adjective, adverb) with length filtering.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 type: open dataset type type open dataset open dataset lifecycle: maintained lifecycle lifecycle maintained maintained Reference

Data source: In-memory curated collection

REST Bridge Endpoint https://context.gnist.ai/rest/random-words/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (5)

get_random_word

Get a random English word.

Returns a word with its type and length. Optionally filter by word type and length range.

ParameterTypeRequiredDescription
word_typeanyoptionalFilter by word type (noun, verb, adjective, adverb). Omit for any type.
min_lengthanyoptionalMinimum word length (inclusive).
max_lengthanyoptionalMaximum word length (inclusive).
Request Body
{
  "query": "example"
}
get_random_words

Get multiple random English words at once.

Returns a list of words, optionally filtered by type. Words are sampled without repeats.

ParameterTypeRequiredDescription
countanyoptionalNumber of random words to return (default: 5, max: 50).
word_typeanyoptionalFilter by word type (noun, verb, adjective, adverb). Omit for any type.
Request Body
{
  "query": "example"
}
search_words

Search for words by substring.

Searches across word text and word types. Case-insensitive.

ParameterTypeRequiredDescription
querystringrequiredSearch substring — matches word text or word type.
max_resultsanyoptionalMaximum number of results (default: 20, max: 100).
Request Body
{
  "query": "example"
}
list_word_types

List all available word types.

Returns the type names that can be used to filter random words (noun, verb, adjective, adverb).

Request Body
{
  "query": "example"
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
Request Body
{
  "feedback": "example"
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/rest/random-words/search_words" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"query": "example"}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/rest/random-words/search_words",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={
  "query": "example"
},
)
print(resp.json())

Related Toolkits (Reference)

Resources