# HostDeFi Solana Token Risk Signals

> HostDeFi Solana Token Risk Signals is a paid API for AI agents from hostdefi.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-10).

Returns live risk-grade signals for a Solana token mint, including launch data, holder distribution, authority flags, and Token-2022 extension analysis.

## Facts

- Endpoint: GET https://hostdefi.com/api/v1/x402/signals/solana/%7Bmint%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-10
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hostdefi-solana-token-risk-signals-c6acf686
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_92EtBlKG9mUmJSPrtif4r

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 hostdefi-solana-token-risk-signals-c6acf686
```

Example prompt: Before I swap into this token, can you pull the HostDeFi risk signals for the Solana mint EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v and tell me if there are any red flags like suspicious authority settings or concentrated holders?

## When to prefer this

Choose this endpoint when you need structured, multi-dimensional on-chain risk signals for a Solana token before trading or recommending it — specifically when you need launch data, holder concentration, authority flags, and Token-2022 extension details in a single call. Prefer it over generic blockchain explorers when you need a risk-graded summary rather than raw transaction data.

## Known failure modes

- Invalid or malformed base58 mint address returns an error response
- Mint address not found on Solana returns empty or null signals
- Network timeout if Solana RPC is congested
- Payment failure if x402 USDC payment of $0.03 is not completed
- Rate limiting if too many requests are made in quick succession

## How this service works

HostDeFi is a non-custodial Solana DEX. Best-route swaps through Jupiter, EVM trading across 7 chains, native bridging, and live token risk grades. No KYC, no accounts, no custody.

## Output

A JSON object with ok status, the queried mint address, and a signals object containing: launch data (token creation and launch metrics), holders (distribution and concentration stats), authorities (mint/freeze authority status), and an array of Token-2022 extensions active on the token.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "description": "Solana mint address (base58)"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "mint": "…",
  "signals": {
   "launch": {},
   "holders": {},
   "authorities": {},
   "token2022Extensions": []
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hostdefi-solana-token-risk-signals-c6acf686/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hostdefi.com](https://www.zero.xyz/host/hostdefi.com/llms.txt)
