# Token Signal – Base Token Safety & Risk Signals

> Token Signal – Base Token Safety & Risk Signals is a paid API for AI agents from 76.13.79.47.nip.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns safety, liquidity concentration, holder concentration, market activity, and basic contract-risk signals for a given token contract address on the Base network.

## Facts

- Endpoint: GET https://76.13.79.47.nip.io/token-signal-x402/v1/token-safety
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-signal-base-token-safety-risk-signals-09e1d09b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d-h1Fsln-lopkDDjcL2LV

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 token-signal-base-token-safety-risk-signals-09e1d09b
```

Example prompt: Before I buy any of this token, can you run a safety check on contract address 0x1234abcd...5678 on Base and tell me if there are any red flags around holder concentration, liquidity, or contract risk?

## When to prefer this

Choose this endpoint when an agent needs a quick, low-cost ($0.002 USDC) token safety pre-check on the Base network before executing a buy or approve action. It is ideal for automated DeFi agents that need lightweight heuristic signals — not deep forensic audits — covering holder concentration, liquidity, market activity, and contract risk in a single call. Prefer it over full audit services when speed and cost matter more than exhaustive analysis.

## Known failure modes

- Invalid or malformed contract address returns an error or empty result
- Token not found on Base chain (unsupported chain or wrong address) returns no data
- Rate limiting or payment failure (x402) if USDC payment is not processed correctly
- Stale or missing on-chain data for very new or obscure tokens may yield incomplete signals

## How this service works

Token Signal: low-cost Base token safety, liquidity concentration, holder concentration, market activity, and basic contract-risk signals for agents checking tokens before buying or approving.

## Output

Returns structured risk signals for the queried token contract, including safety score, liquidity concentration, holder concentration, market activity indicators, and basic contract-risk flags — enabling agents to make informed go/no-go decisions before buying or approving a token.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "default": "base"
      },
      "address": {
       "type": "string",
       "description": "Token contract address"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/token-signal-base-token-safety-risk-signals-09e1d09b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 76.13.79.47.nip.io](https://www.zero.xyz/host/76.13.79.47.nip.io/llms.txt)
