# Solana Token Rug Check Safety Scanner

> Solana Token Rug Check Safety Scanner is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Runs a rug-pull and safety audit on a Solana token by mint address, returning risk flags and safety scores.

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/sol/rug-check
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solana-token-rug-check-safety-scanner-6a940cf8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FPzDgMiAzYC1Cv03It_1Y

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 solana-token-rug-check-safety-scanner-6a940cf8 -d '<json body>'
```

Example prompt: Before I buy this Solana token, can you run a rug check on mint address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU and tell me if it's safe or a likely scam?

## When to prefer this

Use this endpoint when you need a rapid, pre-trade safety check on any Solana token mint address — especially for new pump.fun launches, meme coins, or unfamiliar tokens where rug-pull and honeypot risk is high. Prefer this over generic on-chain lookups when you specifically need a consolidated safety score and red-flag audit rather than raw token metadata.

## Known failure modes

- Invalid or malformed mint address returns a validation error
- Token not found or too new to have data returns empty or partial results
- Network timeout if Solana RPC is congested
- Token has no liquidity data if it was just deployed seconds ago
- Rate limiting or payment failure if USDC balance is insufficient

## How this service works

Authoritative rug/safety report for a Solana token (rugcheck.xyz): normalized risk score, whether mint & freeze authority are renounced, LP locked %, top-5 and top-10 holder concentration, named risk flags, and a plain verdict. Send { mint }. The safety gate before sniping any Solana token.

## Output

Returns a structured safety report for the given Solana token mint address, including an overall risk/safety score, detected rug-pull indicators, honeypot flags, contract audit signals, liquidity lock status, and other on-chain risk factors that help determine whether a token is safe to trade.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solana-token-rug-check-safety-scanner-6a940cf8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
