enrich-wallet-light
Invoke
Light wallet profile with holdings, labels, and risk score
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"address": {
"type": "string",
"minLength": 32,
"maxLength": 44,
"pattern": "^[1-9A-HJ-NP-Za-km-z]+$"
},
"depth": {
"default": "light",
"type": "string",
"enum": [
"light",
"full"
]
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"address",
"depth",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solenrich-production.up.railway.app/entrypoints/enrich-wallet-light/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"address": "string",
"depth": "light",
"format": "json"
}
}
'
enrich-wallet-full
Invoke
Full wallet profile with holdings, DeFi positions, labels, risk score, and connected wallets
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"address": {
"type": "string",
"minLength": 32,
"maxLength": 44,
"pattern": "^[1-9A-HJ-NP-Za-km-z]+$"
},
"depth": {
"default": "light",
"type": "string",
"enum": [
"light",
"full"
]
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"address",
"depth",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solenrich-production.up.railway.app/entrypoints/enrich-wallet-full/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"address": "string",
"depth": "light",
"format": "json"
}
}
'
enrich-token-light
Invoke
Token analysis with price, market data, liquidity, and risk flags
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"mint": {
"type": "string",
"minLength": 32,
"maxLength": 44,
"pattern": "^[1-9A-HJ-NP-Za-km-z]+$"
},
"include_holders": {
"default": false,
"type": "boolean"
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"mint",
"include_holders",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solenrich-production.up.railway.app/entrypoints/enrich-token-light/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"mint": "string",
"include_holders": true,
"format": "json"
}
}
'
Full token analysis with price, market data, liquidity, risk flags, and top holders
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"mint": {
"type": "string",
"minLength": 32,
"maxLength": 44,
"pattern": "^[1-9A-HJ-NP-Za-km-z]+$"
},
"include_holders": {
"default": false,
"type": "boolean"
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"mint",
"include_holders",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solenrich-production.up.railway.app/entrypoints/enrich-token-full/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"mint": "string",
"include_holders": true,
"format": "json"
}
}
'
Parse and enrich a Solana transaction with type detection, protocol identification, and transfer details
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"signature": {
"type": "string",
"minLength": 87,
"maxLength": 88,
"pattern": "^[1-9A-HJ-NP-Za-km-z]+$"
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"signature",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solenrich-production.up.railway.app/entrypoints/parse-transaction/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"signature": "string",
"format": "json"
}
}
'
Identify large token holders and track accumulation/distribution patterns
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"mint": {
"type": "string",
"minLength": 32,
"maxLength": 44,
"pattern": "^[1-9A-HJ-NP-Za-km-z]+$"
},
"threshold_usd": {
"default": 10000,
"type": "number",
"minimum": 100
},
"lookback_hours": {
"default": 24,
"type": "number",
"minimum": 1,
"maximum": 168
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"mint",
"threshold_usd",
"lookback_hours",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solenrich-production.up.railway.app/entrypoints/whale-watch/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"mint": "string",
"threshold_usd": 100,
"lookback_hours": 1,
"format": "json"
}
}
'
Enrich multiple wallets or tokens in parallel
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"addresses": {
"minItems": 1,
"maxItems": 25,
"type": "array",
"items": {
"type": "string",
"minLength": 32,
"maxLength": 44,
"pattern": "^[1-9A-HJ-NP-Za-km-z]+$"
}
},
"type": {
"type": "string",
"enum": [
"wallet",
"token"
]
},
"depth": {
"default": "light",
"type": "string",
"enum": [
"light",
"full"
]
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"addresses",
"type",
"depth",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solenrich-production.up.railway.app/entrypoints/batch-enrich/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"addresses": [
"string"
],
"type": "wallet",
"depth": "light",
"format": "json"
}
}
'
Map wallet transaction connections and detect suspicious clusters
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"address": {
"type": "string",
"minLength": 32,
"maxLength": 44,
"pattern": "^[1-9A-HJ-NP-Za-km-z]+$"
},
"depth": {
"default": 1,
"type": "number",
"minimum": 1,
"maximum": 2
},
"min_interactions": {
"default": 1,
"type": "number",
"minimum": 1
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"address",
"depth",
"min_interactions",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solenrich-production.up.railway.app/entrypoints/wallet-graph/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"address": "string",
"depth": 1,
"min_interactions": 1,
"format": "json"
}
}
'
copy-trade-signals
Invoke
Analyze wallet trading performance and copyability
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"address": {
"type": "string",
"minLength": 32,
"maxLength": 44,
"pattern": "^[1-9A-HJ-NP-Za-km-z]+$"
},
"lookback_days": {
"default": 30,
"type": "number",
"minimum": 1,
"maximum": 90
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"address",
"lookback_days",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solenrich-production.up.railway.app/entrypoints/copy-trade-signals/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"address": "string",
"lookback_days": 1,
"format": "json"
}
}
'
Comprehensive token research briefing with security, whales, and holder analysis
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"mint": {
"type": "string",
"minLength": 32,
"maxLength": 44,
"pattern": "^[1-9A-HJ-NP-Za-km-z]+$"
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"mint",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://solenrich-production.up.railway.app/entrypoints/due-diligence/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"mint": "string",
"format": "json"
}
}
'