Free overview - basic definition and synonyms for a word
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"word": {
"type": "string",
"minLength": 1,
"description": "Word to look up"
}
},
"required": [
"word"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://agile-charisma-production-fc6e.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"word": "<Word to look up>"
}
}
'
Get synonyms for a word
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"word": {
"type": "string",
"minLength": 1,
"description": "Word to find synonyms for"
},
"limit": {
"default": 20,
"type": "number",
"minimum": 1,
"maximum": 50
}
},
"required": [
"word",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://agile-charisma-production-fc6e.up.railway.app/entrypoints/synonyms/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"word": "<Word to find synonyms for>",
"limit": 1
}
}
'
Get semantically related words (useful for topic expansion)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"word": {
"type": "string",
"minLength": 1,
"description": "Word or phrase to find related terms"
},
"limit": {
"default": 20,
"type": "number",
"minimum": 1,
"maximum": 50
}
},
"required": [
"word",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://agile-charisma-production-fc6e.up.railway.app/entrypoints/related/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"word": "<Word or phrase to find related terms>",
"limit": 1
}
}
'
Find rhyming words (perfect rhymes and near rhymes)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"word": {
"type": "string",
"minLength": 1,
"description": "Word to find rhymes for"
},
"limit": {
"default": 20,
"type": "number",
"minimum": 1,
"maximum": 50
}
},
"required": [
"word",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://agile-charisma-production-fc6e.up.railway.app/entrypoints/rhymes/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"word": "<Word to find rhymes for>",
"limit": 1
}
}
'
Complete word definition with all meanings, examples, etymology
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"word": {
"type": "string",
"minLength": 1,
"description": "Word to define"
}
},
"required": [
"word"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://agile-charisma-production-fc6e.up.railway.app/entrypoints/definition/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"word": "<Word to define>"
}
}
'
Comprehensive word report - definition, synonyms, antonyms, related words, rhymes
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"word": {
"type": "string",
"minLength": 1,
"description": "Word for comprehensive analysis"
}
},
"required": [
"word"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://agile-charisma-production-fc6e.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"word": "<Word for comprehensive analysis>"
}
}
'
Look up multiple words at once (definitions + basic synonyms)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"words": {
"minItems": 1,
"maxItems": 10,
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"description": "Array of words to look up (max 10)"
}
},
"required": [
"words"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://agile-charisma-production-fc6e.up.railway.app/entrypoints/batch/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"words": [
"string"
]
}
}
'
Payment analytics summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"description": "Time window in ms",
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://agile-charisma-production-fc6e.up.railway.app/entrypoints/analytics/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'
analytics-transactions
Invoke
Recent payment transactions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
},
"limit": {
"default": 50,
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://agile-charisma-production-fc6e.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'