# TokenGuard Screener

> TokenGuard Screener is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Screens crypto tokens using DeFi analytics and on-chain intelligence to surface safety signals, market data, and risk assessments

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/screener
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-screener-d8729aef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D_RJIJ7S0YEYV-qmLXe4B

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 tokenguard-screener-d8729aef -d '<json body>'
```

Example prompt: Screen the top DeFi tokens on Ethereum for me — I want to see which ones pass safety checks, have decent liquidity, and look healthy on-chain so I can decide which are worth investing in.

## When to prefer this

Choose this endpoint when you need to screen multiple crypto tokens simultaneously for safety and DeFi analytics, particularly for ERC-20 tokens on Base or Ethereum. Prefer it over single-token lookup endpoints when you need comparative risk ranking across a token set, or when you need a combined view of safety, market, and on-chain data in one call. Best suited for pre-investment due diligence, portfolio hygiene checks, and automated DeFi agent workflows that require micropayment-native access via x402.

## Known failure modes

- Empty response body if no tokens match the screening criteria
- Invalid or unrecognized token addresses return error or empty results
- Network/chain not supported returns an error
- Payment failure via x402 micropayment protocol blocks the request
- Rate limiting or quota exhaustion on the Hugging Face Space host
- Stale or delayed on-chain data if the indexer is behind

## How this service works

screener data for AI agents.

## Output

Returns a JSON object containing screened token results including safety scores, market metrics (price, volume, liquidity), on-chain analytics (holder distribution, contract risk flags), and DeFi-specific data points that help evaluate token quality and risk.

## 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": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-screener-d8729aef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
