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://api.solenrich.com/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://api.solenrich.com/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://api.solenrich.com/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://api.solenrich.com/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": 86,
"maxLength": 90,
"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://api.solenrich.com/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://api.solenrich.com/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://api.solenrich.com/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://api.solenrich.com/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://api.solenrich.com/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://api.solenrich.com/entrypoints/due-diligence/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"mint": "string",
"format": "json"
}
}
'
Ask a natural language question about any Solana wallet, token, or transaction
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"question": {
"type": "string",
"minLength": 3,
"maxLength": 500
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"question",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://api.solenrich.com/entrypoints/query/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"question": "string",
"format": "json"
}
}
'
Compare 2-3 tokens side-by-side: price, liquidity, volatility, holder concentration, risk flags
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"mints": {
"minItems": 2,
"maxItems": 3,
"type": "array",
"items": {
"type": "string",
"minLength": 32,
"maxLength": 44,
"pattern": "^[1-9A-HJ-NP-Za-km-z]+$"
},
"description": "2-3 token mint addresses to compare"
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"mints",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://api.solenrich.com/entrypoints/compare-tokens/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"mints": [
"string"
],
"format": "json"
}
}
'
Compare 2-3 wallets side-by-side: portfolio value, activity, risk, labels, holdings
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"addresses": {
"minItems": 2,
"maxItems": 3,
"type": "array",
"items": {
"type": "string",
"minLength": 32,
"maxLength": 44,
"pattern": "^[1-9A-HJ-NP-Za-km-z]+$"
},
"description": "2-3 wallet addresses to compare"
},
"depth": {
"default": "light",
"type": "string",
"enum": [
"light",
"full"
]
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"addresses",
"depth",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://api.solenrich.com/entrypoints/compare-wallets/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"addresses": [
"string"
],
"depth": "light",
"format": "json"
}
}
'
Token trend analysis: price, liquidity, concentration changes over 7/14/30 days with direction indicators
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]+$"
},
"lookback": {
"default": "7d",
"type": "string",
"enum": [
"7d",
"14d",
"30d"
]
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"mint",
"lookback",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://api.solenrich.com/entrypoints/token-trend/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"mint": "string",
"lookback": "7d",
"format": "json"
}
}
'
Wallet history: portfolio value, balance, risk score changes over 7/14/30 days with position changes
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": {
"default": "7d",
"type": "string",
"enum": [
"7d",
"14d",
"30d"
]
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"address",
"lookback",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://api.solenrich.com/entrypoints/wallet-history/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"address": "string",
"lookback": "7d",
"format": "json"
}
}
'
Discover recently launched tokens on Solana with risk scoring and filtering. Returns safest first.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"min_liquidity_usd": {
"default": 1000,
"description": "Minimum liquidity in USD to include",
"type": "number"
},
"max_risk_score": {
"default": 0.8,
"description": "Maximum risk score (0-1) to include",
"type": "number",
"minimum": 0,
"maximum": 1
},
"limit": {
"default": 10,
"description": "Number of tokens to return",
"type": "number",
"minimum": 1,
"maximum": 20
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"min_liquidity_usd",
"max_risk_score",
"limit",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://api.solenrich.com/entrypoints/new-tokens/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"min_liquidity_usd": 0,
"max_risk_score": 0,
"limit": 1,
"format": "json"
}
}
'
DeFi protocol analytics: TVL, yield pools, on-chain activity, health signals
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"protocol": {
"type": "string",
"minLength": 1,
"maxLength": 64,
"description": "Protocol slug (e.g. \"raydium\", \"orca\") or Solana program ID"
},
"include_yields": {
"default": true,
"type": "boolean"
},
"format": {
"default": "json",
"type": "string",
"enum": [
"json",
"llm",
"both"
]
}
},
"required": [
"protocol",
"include_yields",
"format"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://api.solenrich.com/entrypoints/protocol-profile/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"protocol": "<Protocol slug (e.g. \"raydium\", \"orca\") or Solana program ID>",
"include_yields": true,
"format": "json"
}
}
'