# 402.com.tr Rug Score

> 402.com.tr Rug Score is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns a deterministic 0-100 rug-pull probability score for a Base token contract, combining security flags, holder concentration, LP lock status, and liquidity depth with the specific signals that drove the score.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/rug-score
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-rug-score-2aaaf45b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JPXm51Eha1OJnyJ6o294t

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 402-com-tr-rug-score-2aaaf45b
```

Example prompt: Before I buy this token, can you check the rug score for contract address 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed on Base and tell me what signals are driving the risk?

## When to prefer this

Use this endpoint when you need a fast, deterministic numeric gate to screen tokens for rug-pull risk before executing a trade or recommending a token. Prefer this over LLM-based contract analysis when you need a structured numeric score with enumerated signals rather than a narrative explanation, and when latency and cost per call matter for high-frequency screening.

## Known failure modes

- Invalid or malformed contract address returns an error
- Contract address not found on Base chain returns no data
- Network or upstream data provider timeout
- Payment failure via x402 protocol results in 402 response

## How this service works

Deterministic 0-100 rug-probability score combining security flags, holder concentration, LP lock and liquidity depth — with the exact signals that drove it. A fast numeric gate for trading agents. Higher = riskier.

## Output

A numeric rug-pull probability score from 0 to 100 (higher = riskier) along with the specific signals that contributed to the score, including security flag details, holder concentration metrics, LP lock status, and liquidity depth analysis.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Token contract address"
      }
     }
    }
   },
   "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/402-com-tr-rug-score-2aaaf45b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
