# Solidus X402 Solana Address Risk Profile

> Solidus X402 Solana Address Risk Profile is a paid API for AI agents from solidus-x402.fly.dev, paid per call via x402, $0.1/call, status down (last checked 2026-09-16).

Returns a risk profile for a given Solana address (base58), assessing potential threats, flags, and risk indicators associated with that wallet or contract.

## Facts

- Endpoint: GET https://solidus-x402.fly.dev/v1/sol/address/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
- Price: $0.1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solidus-x402-solana-address-risk-profile-fc643531
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QAQKrSqbfEqtDDznrcAf_

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability solidus-x402-solana-address-risk-profile-fc643531
```

Example prompt: Can you run a risk profile on the Solana address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v and tell me if there are any red flags or safety concerns before I interact with it?

## When to prefer this

Use this endpoint when you need a dedicated, real-time on-chain risk assessment for a specific Solana wallet or contract address, especially before executing a transaction or onboarding a counterparty. Prefer this over generic token safety endpoints (like mint_hygiene or sell_sim) when the focus is the address itself rather than an SPL token's mint properties or liquidity. Ideal for compliance screening, counterparty risk checks, and agent-level pre-transaction gating.

## Known failure modes

- Invalid or malformed base58 address returns a 400 error
- Unknown or brand-new address with no history may return a minimal or neutral profile
- Payment failure or missing x402 payment header returns 402 Payment Required
- Service unavailability returns 5xx error
- Rate limiting may apply if too many requests are made in quick succession

## How this service works

Address risk EPjFWdd5… — Solana address risk profile

## Output

A structured risk profile object for the specified Solana address, potentially including a risk score, category labels (e.g. scam, mixer, fraud), behavioral flags, and threat indicators derived from on-chain activity and Solidus Labs intelligence.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "addr"
     ],
     "properties": {
      "addr": {
       "type": "string",
       "description": "Solana address (base58) to risk-profile"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solidus-x402-solana-address-risk-profile-fc643531/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from solidus-x402.fly.dev](https://www.zero.xyz/host/solidus-x402.fly.dev/llms.txt)
