# SYS84 Robinhood Chain Token Traction Audit

> SYS84 Robinhood Chain Token Traction Audit is a paid API for AI agents from api.sys84.org, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Analyzes a token contract address on Robinhood Chain and returns a risk grade, trend state, survivor evidence, and blacklist/flag signals for agent-driven trading risk assessment.

## Facts

- Endpoint: POST https://api.sys84.org/v1/services/robinhood_token_traction_audit
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sys84-robinhood-chain-token-traction-audit-c0ce747b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ilh6-7hMKvZJWDLC21wwE

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 sys84-robinhood-chain-token-traction-audit-c0ce747b -d '<json body>'
```

Example prompt: Can you audit the Robinhood Chain token at contract address 0xAbC123... and tell me its traction grade, trend state, risk flags, and whether any blacklisted wallets are involved?

## When to prefer this

Use this endpoint when you need structured, machine-readable risk intelligence specifically for tokens on Robinhood Chain, especially when you need deterministic evidence receipts for auditability, blacklist screening, and trend-state monitoring rather than generic token price feeds or cross-chain analytics.

## Known failure modes

- Invalid or malformed token_address returns an error or empty result
- Token not found on Robinhood Chain returns low-confidence grade with unknown trend state
- Network or upstream data unavailability may return partial results
- Payment failure via x402 results in HTTP 402 and no data returned
- Unsupported chain value returns an error if chain is not robinhood

## How this service works

Stateful Robinhood Chain survivor evidence and agent risk services. Pay per call with x402.

## Output

Returns a structured risk assessment including: a grade (avoid/watch/traction/high-risk hype), a 0–1 confidence score, a trend state (new_watch/accumulating/steady/fading/unknown), an array of risk flags and reasons, a blacklist object showing operator blacklist and suspicious wallet hits, holder count, social count, market cap in USD, a DexScreener URL, survivor acceleration metrics, and a deterministic evidence receipt with observation window, recheck time, and validity window. Also includes a not_trade_advice flag and execution_authorized flag.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "const": "http",
     "type": "string"
    },
    "method": {
     "enum": [
      "GET",
      "POST",
      "PUT",
      "PATCH",
      "DELETE",
      "HEAD"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "body": {
     "type": "object",
     "properties": {
      "token_address": {
       "type": "string",
       "description": "string Robinhood Chain token contract address"
      },
      "chain": {
       "type": "string",
       "description": "string optional, default robinhood"
      },
      "include_raw": {
       "type": "boolean",
       "description": "boolean optional, include matched monitor row for debugging"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "token_address": {
       "type": "string",
       "description": "string Robinhood Chain token contract address"
      },
      "chain": {
       "type": "string",
       "description": "string optional, default robinhood"
      },
      "include_raw": {
       "type": "boolean",
       "description": "boolean optional, include matched monitor row for debugging"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "grade": {
       "type": "string",
       "description": "string avoid/watch/traction/high-risk hype"
      },
      "confidence": {
       "type": "number",
       "description": "number 0-1"
      },
      "market_cap_usd": {
       "type": "number",
       "description": "number"
      },
      "holder_count": {
       "type": "number",
       "description": "number"
      },
      "social_count": {
       "type": "number",
       "description": "number"
      },
      "trend_state": {
       "type": "string",
       "description": "string new_watch/accumulating/steady/fading/unknown"
      },
      "survivor_acceleration": {
       "type": "object",
       "description": "object observations, score, state, changes, reasons, and penalties; one observation remains unproven"
      },
      "evidence_receipt": {
       "type": "object",
     
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "grade": "string",
  "reasons": [],
  "blacklist": {},
  "confidence": 1,
  "risk_flags": [],
  "trend_state": "string",
  "holder_count": 1,
  "social_count": 1,
  "market_cap_usd": 1,
  "dexscreener_url": "string",
  "evidence_receipt": {},
  "not_trade_advice": true,
  "execution_authorized": false,
  "survivor_acceleration": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sys84-robinhood-chain-token-traction-audit-c0ce747b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.sys84.org](https://www.zero.xyz/host/api.sys84.org/llms.txt)
