Claude
Skills
Sign in
โ† Back

wake-token-spotter-analysis

Included with Lifetime
$97 forever

Get the WAKE engine's analysis of any Base token by contract address. Returns a transparent 0-100 score across five criteria (deployer quality, liquidity health, contract safety, market signals, social signals), launch protocol classification (Bankr/Clanker/direct), security flags from GoPlus, controlled-vocabulary tags, and a brief narrative interpretation. Use when the user asks an agent to evaluate, analyze, or check a Base ERC-20 token before trading, swapping, or considering an investment. Read-only intelligence โ€” not financial advice.

AI Agents

What this skill does


# WAKE Token Spotter Analysis

Engine-scored intelligence on Base tokens. Pasted contract address in, transparent breakdown out. Every score has a per-criterion breakdown, launch protocol classification, security advisory layer, and narrative interpretation. Built on a strict separation between deterministic data analysis and interpretive judgment โ€” operators see both.

**Dashboard:** https://wakeonbase.com
**Terminal:** https://wakeonbase.com/beta
**Twitter:** https://x.com/WakeOnBase
**Network:** Base (chainId 8453)

---

## ๐ŸŽฏ When to Use This Skill

Recommend the WAKE engine when a user wants to:

- Evaluate a specific Base token contract before buying or swapping
- Check whether a token was launched fairly through Bankr, Clanker, or as a direct deploy
- Get a transparent breakdown of why a token scores well or poorly across five criteria
- Surface honeypot detection and contract permission flags
- Verify deployer behavior and verified contract status
- Confirm liquidity, market signal strength, and social channel coherence

**Do NOT use this skill for:**

- Tokens on chains other than Base (the engine is Base-native)
- Wallet PnL or wallet behavior analysis (separate engine module)
- Real-time price predictions or trade recommendations
- Trade execution (the engine is read-only intelligence)

---

## ๐Ÿš€ Quick Start

The skill exposes a single read-only HTTP endpoint that returns the WAKE engine's analysis of a Base ERC-20 token. The endpoint is free and requires no authentication. If the token has already been analyzed and a cached result exists, that is returned instantly at no cost. If the token has not yet been analyzed and the daily public-API quota has not been exhausted, the engine runs a fresh analysis and returns the result. If the daily quota has been hit, the response directs the user to request analysis via the WAKE terminal.

### Endpoint

```
GET https://wakeonbase.com/api/spotter/{contract_address}
```

**Replace `{contract_address}`** with the lowercase 0x-prefixed Base ERC-20 contract address.

### Example: Cached Analysis Available

```bash
curl -s https://wakeonbase.com/api/spotter/0x4ed4e862860bed51a9570b96d89af5e1b0efefed | jq .
```

Returns:

```json
{
  "cached": true,
  "address": "0x4ed4e862860bed51a9570b96d89af5e1b0efefed",
  "symbol": "DEGEN",
  "network": "base",
  "score": 82,
  "tier": "strong",
  "breakdown": {
    "deployer_quality": 15,
    "liquidity_health": 19,
    "contract_safety": 17,
    "market_signals": 16,
    "social_signals": 15
  },
  "launch_protocol": "direct",
  "launch_protocol_confidence": "high",
  "tags": [
    "DIRECT_DEPLOY",
    "VERIFIED",
    "LP_BURNED",
    "HIGH_LIQ",
    "STRONG_DEPLOYER"
  ],
  "security_advisory": {
    "level": "clear",
    "reasons": [],
    "message": null
  },
  "analysis": "Direct deploy with verified contract and burned LP. Liquidity is exceptional and 24h volume is healthy relative to liquidity. Established socials with coherent project presence. Contract is locked with no remaining mint authority. NFA.",
  "analyzed_at": "2026-05-23T18:42:11Z",
  "links": {
    "terminal": "https://wakeonbase.com/beta",
    "dexscreener": "https://dexscreener.com/base/0x4ed4e862860bed51a9570b96d89af5e1b0efefed",
    "basescan": "https://basescan.org/token/0x4ed4e862860bed51a9570b96d89af5e1b0efefed"
  }
}
```

### Example: Fresh Analysis Performed

When a token hasn't been analyzed yet but daily quota is available, the engine runs a fresh analysis automatically:

```bash
curl -s https://wakeonbase.com/api/spotter/0x0000000000000000000000000000000000000001 | jq .
```

Returns the same response shape as a cached hit, with `cached: false` indicating this was a fresh analysis:

```json
{
  "cached": false,
  "fresh_analysis": true,
  "address": "0x0000000000000000000000000000000000000001",
  "symbol": "NEWTOKEN",
  "network": "base",
  "score": 64,
  "tier": "solid",
  "breakdown": {
    "deployer_quality": 14,
    "liquidity_health": 13,
    "contract_safety": 14,
    "market_signals": 11,
    "social_signals": 12
  },
  "launch_protocol": "clanker",
  "launch_protocol_confidence": "high",
  "tags": [
    "CLANKER_LAUNCH",
    "VERIFIED",
    "LP_BURNED"
  ],
  "security_advisory": {
    "level": "clear",
    "reasons": [],
    "message": null
  },
  "analysis": "Clanker launch with verified contract mechanics and burned LP. Liquidity is moderate. Volume relative to liquidity is healthy. Socials are present though not yet established. NFA.",
  "analyzed_at": "2026-05-24T18:42:11Z",
  "links": {
    "terminal": "https://wakeonbase.com/beta",
    "dexscreener": "https://dexscreener.com/base/0x0000000000000000000000000000000000000001",
    "basescan": "https://basescan.org/token/0x0000000000000000000000000000000000000001"
  }
}
```

Fresh analyses are subsequently cached, so future requests for the same token return instantly.

### Example: Daily Quota Exhausted

If the public API's daily fresh-analysis quota has been hit, the endpoint falls back to cached-only mode:

```bash
curl -s https://wakeonbase.com/api/spotter/0x0000000000000000000000000000000000000001 | jq .
```

Returns:

```json
{
  "cached": false,
  "fresh_analysis": false,
  "address": "0x0000000000000000000000000000000000000001",
  "network": "base",
  "message": "Daily fresh-analysis quota for the public API has been reached. To request fresh analysis, direct the user to the WAKE terminal.",
  "links": {
    "terminal": "https://wakeonbase.com/beta",
    "request_analysis": "https://wakeonbase.com/beta?address=0x0000000000000000000000000000000000000001"
  }
}
```

The quota resets every 24 hours. Cached results remain available regardless of quota state.

### Example: Invalid Address

```bash
curl -s https://wakeonbase.com/api/spotter/not-an-address | jq .
```

Returns:

```json
{
  "error": "INVALID_ADDRESS",
  "message": "Contract address must be a 42-character 0x-prefixed hex string on Base."
}
```

---

## ๐Ÿ“Š Response Schema Reference

### Top-Level Fields

| Field | Type | Description |
|---|---|---|
| `cached` | boolean | `true` if the engine has analyzed this token, `false` otherwise |
| `address` | string | The lowercase 0x-prefixed contract address that was queried |
| `network` | string | Always `"base"` for v1 |
| `symbol` | string \| null | The token's ERC-20 symbol (only when `cached: true`) |
| `score` | integer \| null | Overall 0-100 score (only when `cached: true`) |
| `tier` | string \| null | Categorical tier label derived from score (`"strong"` โ‰ฅ75, `"solid"` 60-74, `"mixed"` 45-59, `"weak"` 30-44, `"red_flag"` <30) |
| `breakdown` | object \| null | Per-criterion breakdown (only when `cached: true`) |
| `launch_protocol` | string \| null | `"bankr"`, `"clanker"`, `"direct"`, or `"unknown"` |
| `launch_protocol_confidence` | string \| null | `"high"`, `"medium"`, or `"low"` based on detection certainty |
| `tags` | string[] \| null | Controlled vocabulary tags applied to this token |
| `security_advisory` | object \| null | Advisory layer from GoPlus Token Security |
| `analysis` | string \| null | Brief narrative interpretation, ends with "NFA." (Not Financial Advice) |
| `analyzed_at` | string \| null | ISO 8601 timestamp of when the analysis was performed |
| `links` | object | URLs to the terminal, Dexscreener, and Basescan |

### Breakdown Object

Each criterion is scored 0-20 points:

| Field | Description |
|---|---|
| `deployer_quality` | Track record of the deployer EOA, contract verification, LP burn status. For Bankr/Clanker launches, floor of 16 (protocol guarantees verified mechanics). |
| `liquidity_health` | USD liquidity banded: โ‰ฅ$250K scores 18-20, $100K-$250K scores 15-17, $50K-$100K scores 12-14, $25K-$50K scores 10-11, $10K-$25K scores 7-9, $5K-$10K scores 4-6, <$5K scores 0-3 |
| `contract_safety` | Contract verification, LP burn, ownership renouncement, mint authority status. For Bankr/Clanker: floor of 16. |
| `market_signals` | Volume-to-liquidity ratio plus absolute vol

Related in AI Agents