# x402 Bazaar Batch Token Rug-Risk Screener

> x402 Bazaar Batch Token Rug-Risk Screener is a paid API for AI agents from api.relai.fi, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Screens up to 10 Base tokens in one call, returning a 0-100 rug-probability score, risk level, and top risk signals for each, sorted riskiest-first.

## Facts

- Endpoint: POST https://api.relai.fi/relay/1782567677091/api/x402/batch-risk
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-bazaar-batch-token-rug-risk-screener-43ebccd2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bYLQKWtVOMcATZdxq_D_-

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 x402-bazaar-batch-token-rug-risk-screener-43ebccd2 -d '<json body>'
```

Example prompt: Screen these 5 Base tokens for rug pull risk and rank them from most to least dangerous: 0xabc…, 0xdef…, 0x123…, 0x456…, 0x789….

## When to prefer this

Use this endpoint when you need to triage multiple Base tokens for rug-pull risk in a single round-trip without paying per-token fees — ideal for portfolio screening, watchlist monitoring, or batch due diligence. Prefer this over single-token endpoints when evaluating 2-10 tokens at once. Choose it over generic token analytics when you specifically need a rug-probability score with ranked risk signals.

## Known failure modes

- Returns HTTP 402 with payment requirements when USDC payment via x402 has not been made — client must pay $0.03 USDC on Base and retry
- Invalid or non-Base token addresses return errors or low-quality scores
- Exceeding 10 tokens in a single request may return a validation error
- Network or RPC issues on Base chain may cause intermittent 500 errors

## How this service works

Screen up to 10 Base tokens in a single paid call — each gets a 0-100 rug-probability score, risk level and top signals, sorted riskiest-first. Built for agents triaging a watchlist or portfolio without paying per token. Paid via x402: $0.03 in USDC on Base (eip155:8453) to 0x973a31858f4d2125f48c880542da11a2796f12d6. Returns 402 with payment requirements; pay and retry.

## Output

A list of up to 10 token assessments sorted riskiest-first, each containing a 0-100 rug-probability score, a categorical risk level (e.g. low/medium/high), and the top signals that drove the score.

## 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": [
      "addresses"
     ],
     "properties": {
      "addresses": {
       "type": "string",
       "description": "Token addresses (comma-separated, up to 10)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-bazaar-batch-token-rug-risk-screener-43ebccd2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relai.fi](https://www.zero.xyz/host/api.relai.fi/llms.txt)
