SolEnrich

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

  • 10 Entrypoints
  • v1.0.0 Version
  • None Payments
solenrich-production.up.railway.app

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://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

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://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

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://solenrich-production.up.railway.app/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://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-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": 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"
      }
    }
  '

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://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"
      }
    }
  '

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://solenrich-production.up.railway.app/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://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

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://solenrich-production.up.railway.app/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://solenrich-production.up.railway.app/entrypoints/due-diligence/invoke' \
  -H 'Content-Type: application/json' \
  -d '
    {
      "input": {
        "mint": "string",
        "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…