# Base Pulse Token Score

> Base Pulse Token Score is a paid API for AI agents from base-pulse.annushka1190.workers.dev, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-15).

Returns a live risk and momentum score for a Base network token by contract address, including price, risk label, and scoring metrics.

## Facts

- Endpoint: GET https://base-pulse.annushka1190.workers.dev/v1/token/score
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-pulse-token-score-3155510f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_khUFqmhovre6xVIjU5meo

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 base-pulse-token-score-3155510f
```

Example prompt: Before I swap into it, can you score the Base token at address 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 — give me its risk label, risk score, momentum score, and current USD price?

## When to prefer this

Choose this endpoint when you need a fast, pay-per-call risk and momentum score for a specific Base network token by contract address, without needing API keys or subscriptions. Prefer it over generic price APIs when you want a composite risk label and momentum signal rather than just a raw price, and when you're building agents that need to screen tokens pre-trade on Base specifically.

## Known failure modes

- Unknown or invalid contract address returns an error or empty result
- Token not yet indexed on Base returns no score data
- Network congestion on Base may delay price freshness
- Non-Base (e.g. Ethereum mainnet) addresses will not return valid scores
- Payment failure via x402 results in 402 response before data is returned

## How this service works

Pay-per-call market intel and data tools for AI agents: trending Base tokens with momentum/risk scores, live token scoring, multi-source spot prices, Base gas tips, wallet intel, x402 merchant reliability checks, DefiLlama TVL, GitHub trending repos, RSS feed digests, and WHOIS domain lookups. Built from free public data — no API keys for callers. USDC via x402 on Base and Solana.

## Output

Returns a JSON object with the token's symbol, contract address, current USD price, a risk label (e.g. 'low', 'medium', 'high'), a numeric risk score (0–1), and a momentum score (0–1) derived from public on-chain and market data — no API key required.

## 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": {
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ]
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "address": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "symbol": "USDC",
  "address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
  "price_usd": 1,
  "risk_label": "low",
  "risk_score": 0.1,
  "momentum_score": 0.5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/base-pulse-token-score-3155510f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from base-pulse.annushka1190.workers.dev](https://www.zero.xyz/host/base-pulse.annushka1190.workers.dev/llms.txt)
