SolEnrich

Solana onchain data enrichment. Wallet profiling, token analysis, risk scoring. JSON for agents, natural language for LLMs.

  • 17 Entrypoints
  • v1.0.0 Version
  • None Payments
api.solenrich.com

Entrypoints

Explore the capabilities exposed by this agent. Invoke with JSON, stream responses when available, and inspect pricing where monetization applies.

enrich-wallet-light

Invoke

Light wallet profile with holdings, labels, and risk score

Pricing Free
Invoke Endpoint POST /entrypoints/enrich-wallet-light/invoke
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

Pricing Free
Invoke Endpoint POST /entrypoints/enrich-wallet-full/invoke
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

Pricing Free
Invoke Endpoint POST /entrypoints/enrich-token-light/invoke
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"
      }
    }
  '

enrich-token-full

Invoke

Full token analysis with price, market data, liquidity, risk flags, and top holders

Pricing Free
Invoke Endpoint POST /entrypoints/enrich-token-full/invoke
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-transaction

Invoke

Parse and enrich a Solana transaction with type detection, protocol identification, and transfer details

Pricing Free
Invoke Endpoint POST /entrypoints/parse-transaction/invoke
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"
      }
    }
  '

whale-watch

Invoke

Identify large token holders and track accumulation/distribution patterns

Pricing Free
Invoke Endpoint POST /entrypoints/whale-watch/invoke
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"
      }
    }
  '

batch-enrich

Invoke

Enrich multiple wallets or tokens in parallel

Pricing Free
Invoke Endpoint POST /entrypoints/batch-enrich/invoke
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"
      }
    }
  '

wallet-graph

Invoke

Map wallet transaction connections and detect suspicious clusters

Pricing Free
Invoke Endpoint POST /entrypoints/wallet-graph/invoke
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

Pricing Free
Invoke Endpoint POST /entrypoints/copy-trade-signals/invoke
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"
      }
    }
  '

due-diligence

Invoke

Comprehensive token research briefing with security, whales, and holder analysis

Pricing Free
Invoke Endpoint POST /entrypoints/due-diligence/invoke
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"
      }
    }
  '

query

Invoke

Ask a natural language question about any Solana wallet, token, or transaction

Pricing Free
Invoke Endpoint POST /entrypoints/query/invoke
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-tokens

Invoke

Compare 2-3 tokens side-by-side: price, liquidity, volatility, holder concentration, risk flags

Pricing Free
Invoke Endpoint POST /entrypoints/compare-tokens/invoke
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-wallets

Invoke

Compare 2-3 wallets side-by-side: portfolio value, activity, risk, labels, holdings

Pricing Free
Invoke Endpoint POST /entrypoints/compare-wallets/invoke
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

Invoke

Token trend analysis: price, liquidity, concentration changes over 7/14/30 days with direction indicators

Pricing Free
Invoke Endpoint POST /entrypoints/token-trend/invoke
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

Invoke

Wallet history: portfolio value, balance, risk score changes over 7/14/30 days with position changes

Pricing Free
Invoke Endpoint POST /entrypoints/wallet-history/invoke
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"
      }
    }
  '

new-tokens

Invoke

Discover recently launched tokens on Solana with risk scoring and filtering. Returns safest first.

Pricing Free
Invoke Endpoint POST /entrypoints/new-tokens/invoke
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"
      }
    }
  '

protocol-profile

Invoke

DeFi protocol analytics: TVL, yield pools, on-chain activity, health signals

Pricing Free
Invoke Endpoint POST /entrypoints/protocol-profile/invoke
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"
      }
    }
  '

Client Example: x402-fetch

Use the x402-fetch helpers to wrap a standard fetch call and automatically attach payments. This script loads configuration from .env, pays the facilitator, and logs both the response body and the decoded payment receipt.

import { config } from "dotenv";
import {
  decodeXPaymentResponse,
  wrapFetchWithPayment,
  createSigner,
  type Hex,
} from "x402-fetch";

config();

const privateKey = process.env.AGENT_WALLET_PRIVATE_KEY as Hex | string;
const agentUrl = process.env.AGENT_URL as string; // e.g. https://agent.example.com
const endpointPath = process.env.ENDPOINT_PATH as string; // e.g. /entrypoints/echo/invoke
const url = `${agentUrl}${endpointPath}`;

if (!agentUrl || !privateKey || !endpointPath) {
  console.error("Missing required environment variables");
  console.error("Required: AGENT_WALLET_PRIVATE_KEY, AGENT_URL, ENDPOINT_PATH");
  process.exit(1);
}

/**
 * Demonstrates paying for a protected resource using x402-fetch.
 *
 * Required environment variables:
 * - AGENT_WALLET_PRIVATE_KEY    Wallet private key for signing payments
 * - AGENT_URL                   Base URL of the agent server
 * - ENDPOINT_PATH               Endpoint path (e.g. /entrypoints/echo/invoke)
 */
async function main(): Promise<void> {
  // const signer = await createSigner("solana-devnet", privateKey); // uncomment for Solana
  const signer = await createSigner("base-sepolia", privateKey);
  const fetchWithPayment = wrapFetchWithPayment(fetch, signer);

  const response = await fetchWithPayment(url, { method: "GET" });
  const body = await response.json();
  console.log(body);

  const paymentResponse = decodeXPaymentResponse(
    response.headers.get("x-payment-response")!
  );
  console.log(paymentResponse);
}

main().catch((error) => {
  console.error(error?.response?.data?.error ?? error);
  process.exit(1);
});

Manifest

Loading…
Fetching agent card…