# Losbeto Rugcheck — Token Rug Pull Risk Analysis

> Losbeto Rugcheck — Token Rug Pull Risk Analysis is a paid API for AI agents from api.losbeto.xyz, paid per call via x402, $0.025/call, status unknown (last checked 2026-09-15).

Checks a cryptocurrency token for rug pull risk indicators and returns a safety/risk assessment

## Facts

- Endpoint: GET https://api.losbeto.xyz/rugcheck
- Price: $0.025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/losbeto-rugcheck-token-rug-pull-risk-analysis-9e9663ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xzUstklW8jTRW16Elz6L5

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 losbeto-rugcheck-token-rug-pull-risk-analysis-9e9663ca
```

Example prompt: Can you run a rugcheck on this Solana token address and tell me if it looks safe or if there are any red flags I should know about before buying?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call rug pull risk check on a Solana or Base token before executing a trade or recommending a token to a user. It is well-suited for AI trading agents that need low-cost ($0.025 USDC) automated safety screening without maintaining their own on-chain analysis infrastructure.

## Known failure modes

- Invalid or unrecognized token address returns an error or empty result
- Token on unsupported chain may return no data
- Malformed input schema may result in a 400 error
- Rate limiting or payment failure via x402 protocol may block the request
- Newly deployed tokens with no on-chain history may have insufficient data for analysis

## How this service works

OpenAI-compatible LLM gateway at $0.005/call — change base_url, pay in USDC. Plus pay-per-call market data: multi-oracle price consensus, sentiment, forex, equities, commodities, Brazil macro (BCB/B3) and crypto. No API keys, no accounts. USDC on Base, Solana and Algorand via x402.

## Output

Returns a JSON risk report for the specified token, likely including a risk score, safety flags (e.g. honeypot detection, liquidity lock status, ownership concentration, mint authority), and overall pass/fail safety verdict.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "mint": {
       "type": "string",
       "description": "Solana SPL token mint address"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "description": "Solana token rug-pull screening: mint and freeze authority, liquidity lock, holder concentration and the specific red flags found."
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/losbeto-rugcheck-token-rug-pull-risk-analysis-9e9663ca/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.losbeto.xyz](https://www.zero.xyz/host/api.losbeto.xyz/llms.txt)
