General conversational AI endpoint
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"message": {
"type": "string",
"minLength": 1
},
"system": {
"type": "string"
}
},
"required": [
"message"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://lavish-vision-production-bf85.up.railway.app/entrypoints/chat/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"message": "string"
}
}
'
Crypto topic/token research and analysis
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"topic": {
"type": "string",
"minLength": 1
},
"depth": {
"type": "string",
"enum": [
"brief",
"detailed"
]
}
},
"required": [
"topic"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://lavish-vision-production-bf85.up.railway.app/entrypoints/research/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"topic": "string"
}
}
'
Sentiment-based trade signal (DRY RUN — no real trades)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"token": {
"type": "string",
"minLength": 1
},
"timeframe": {
"type": "string",
"enum": [
"short",
"medium",
"long"
]
}
},
"required": [
"token"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://lavish-vision-production-bf85.up.railway.app/entrypoints/trade-signal/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"token": "string"
}
}
'
Summarize text or URL content
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"text": {
"type": "string"
},
"url": {
"type": "string"
},
"style": {
"type": "string",
"enum": [
"bullets",
"paragraph",
"tldr"
]
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://lavish-vision-production-bf85.up.railway.app/entrypoints/summarize/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"text": "string",
"url": "string",
"style": "bullets"
}
}
'
Sentiment analysis on text, tweets, or market narratives
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"text": {
"type": "string",
"minLength": 1
},
"context": {
"type": "string",
"enum": [
"crypto",
"general",
"social"
]
}
},
"required": [
"text"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://lavish-vision-production-bf85.up.railway.app/entrypoints/analyze/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"text": "string"
}
}
'
Rate a memecoin's potential (community, virality, risk)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"token": {
"type": "string",
"minLength": 1
},
"details": {
"type": "string"
}
},
"required": [
"token"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://lavish-vision-production-bf85.up.railway.app/entrypoints/meme-score/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"token": "string"
}
}
'
Deep token security scan — contract analysis, rug detection, liquidity check, holder distribution. Undercuts AgentLISA.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"token": {
"type": "string",
"minLength": 1
},
"chain": {
"type": "string",
"enum": [
"solana",
"ethereum",
"base",
"bsc",
"polygon",
"auto"
]
}
},
"required": [
"token"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://lavish-vision-production-bf85.up.railway.app/entrypoints/rugradar/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"token": "string"
}
}
'
Real-time whale movement tracker — large wallet flows, accumulation/distribution patterns, smart money signals.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"token": {
"type": "string",
"minLength": 1
},
"chain": {
"type": "string",
"enum": [
"solana",
"ethereum",
"base",
"bsc",
"auto"
]
},
"threshold": {
"description": "Minimum USD value to flag as whale (default: 10000)",
"type": "string"
}
},
"required": [
"token"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://lavish-vision-production-bf85.up.railway.app/entrypoints/tidalwatch/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"token": "string"
}
}
'
Agent reputation and verification checker — validates ERC-8004 registration, uptime, endpoint health, and trust signals.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"agent": {
"type": "string",
"minLength": 1
},
"deep_scan": {
"description": "Run extended checks (slower but more thorough)",
"type": "boolean"
}
},
"required": [
"agent"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://lavish-vision-production-bf85.up.railway.app/entrypoints/trustshell/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"agent": "string"
}
}
'
Echo input text (health check) — FREE
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"text": {
"type": "string",
"minLength": 1
}
},
"required": [
"text"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://lavish-vision-production-bf85.up.railway.app/entrypoints/echo/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"text": "string"
}
}
'