# TokenScope Rug Check — Crypto Token Safety Analysis

> TokenScope Rug Check — Crypto Token Safety Analysis is a paid API for AI agents from coinscrop.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-13).

Analyzes a crypto token or project for rug pull risks and safety signals using AI-powered analysis

## Facts

- Endpoint: POST https://coinscrop.vercel.app/api/rugcheck
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenscope-rug-check-crypto-token-safety-analysis-9f113e66
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O1Dgsgc71SyHmRRrInxjB

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 tokenscope-rug-check-crypto-token-safety-analysis-9f113e66 -d '<json body>'
```

Example prompt: Can you do a rug check on the token PEPE2 and tell me if it looks safe or like a potential rug pull?

## When to prefer this

Use this endpoint when you need to quickly assess whether a crypto token is a potential rug pull or scam before investing, especially for newer or low-cap tokens on DEXs. Prefer this over general token info endpoints when safety and fraud detection is the primary concern.

## Known failure modes

- Token not found in CoinGecko or DexScreener — returns success: false
- Ambiguous query string yields no match
- Upstream data provider outage causes empty or failed response
- Invalid or malformed query string returns error
- Payment not processed via x402 results in 402 response before analysis

## How this service works

AI-powered crypto analysis. CoinGecko + DexScreener + MiMo LLM. 20 endpoints. x402 on Base.

## Output

Returns a success flag and a data object containing rug pull risk analysis for the queried token, including safety signals, risk indicators, and AI-generated assessment based on CoinGecko and DexScreener data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenscope-rug-check-crypto-token-safety-analysis-9f113e66/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from coinscrop.vercel.app](https://www.zero.xyz/host/coinscrop.vercel.app/llms.txt)
