Stateful Robinhood Chain survivor and acceleration audit for agents before they promote, d
Stateful Robinhood Chain survivor and acceleration audit for agents before they promote, discuss, or route around a token. Returns repeated-snapshot momentum evidence, market-cap lane, holder/social gates, blacklist flags, and a non-trading grade.
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
api.sys84.org · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:4663",
"payTo": "0x64e4e6c18849ba687A468dcad0A582AC6f8089E4",
"asset": "0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168",
"amount": "50000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x64e4e6c18849ba687A468dcad0A582AC6f8089E4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "agent-risk",
"description": "Stateful Robinhood Chain survivor and acceleration audit for agents before they promote, discuss, or route around a token. Returns repeated-snapshot momentum evidence, market-cap lane, holder/social gates, blacklist flags, and a non-trading grade.",
"info": {
"category": "agent-risk",
"description": "Stateful Robinhood Chain survivor and acceleration audit for agents before they promote, discuss, or route around a token. Returns repeated-snapshot momentum evidence, market-cap lane, holder/social gates, blacklist flags, and a non-trading grade.",
"input": {
"body": {
"chain": "robinhood",
"include_raw": true,
"token_address": "0x020bfc650a365f8bb26819deaabf3e21291018b4"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"method": "POST",
"name": "SYS84 Robinhood Token Traction Audit",
"output": {
"example": {
"blacklist": {},
"confidence": 1,
"dexscreener_url": "string",
"evidence_receipt": {},
"execution_authorized": false,
"grade": "string",
"holder_count": 1,
"market_cap_usd": 1,
"not_trade_advice": true,
"reasons": [],
"risk_flags": [],
"social_count": 1,
"survivor_acceleration": {},
"trend_state": "string"
},
"type": "json"
},
"provider": "SYS84",
"routeTemplate": "https://api.sys84.org/v1/services/robinhood_token_traction_audit",
"serviceName": "SYS84 Robinhood Token Traction Audit",
"tags": [
"sys84",
"x402",
"agent",
"risk",
"wallet",
"security",
"defi",
"robinhood"
]
},
"method": "POST",
"name": "SYS84 Robinhood Token Traction Audit",
"provider": "SYS84",
"routeTemplate": "https://api.sys84.org/v1/services/robinhood_token_traction_audit",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"body": {
"properties": {
"chain": {
"description": "string optional, default robinhood",
"type": "string"
},
"include_raw": {
"description": "boolean optional, include matched monitor row for debugging",
"type": "boolean"
},
"token_address": {
"description": "string Robinhood Chain token contract address",
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"GET",
"POST",
"PUT",
"PATCH",
"DELETE",
"HEAD"
],
"type": "string"
},
"queryParams": {
"properties": {
"chain": {
"description": "string optional, default robinhood",
"type": "string"
},
"include_raw": {
"description": "boolean optional, include matched monitor row for debugging",
"type": "boolean"
},
"token_address": {
"description": "string Robinhood Chain token contract address",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"blacklist": {
"description": "object operator blacklist and suspicious wallet hits",
"type": "object"
},
"confidence": {
"description": "number 0-1",
"type": "number"
},
"dexscreener_url": {
"description": "string",
"type": "string"
},
"evidence_receipt": {
"description": "object deterministic receipt id, observation window, recheck time, and validity time",
"type": "object"
},
"execution_authorized": {
"description": "boolean false",
"type": "boolean"
},
"grade": {
"description": "string avoid/watch/traction/high-risk hype",
"type": "string"
},
"holder_count": {
"description": "number",
"type": "number"
},
"market_cap_usd": {
"description": "number",
"type": "number"
},
"not_trade_advice": {
"description": "boolean true",
"type": "boolean"
},
"reasons": {
"description": "array machine-readable evidence reasons",
"type": "array"
},
"risk_flags": {
"description": "array machine-readable risk flags",
"type": "array"
},
"social_count": {
"description": "number",
"type": "number"
},
"survivor_acceleration": {
"description": "object observations, score, state, changes, reasons, and penalties; one observation remains unproven",
"type": "object"
},
"trend_state": {
"description": "string new_watch/accumulating/steady/fading/unknown",
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"serviceName": "SYS84 Robinhood Token Traction Audit",
"tags": [
"sys84",
"x402",
"agent",
"risk",
"wallet",
"security",
"defi",
"robinhood"
]
}
}Use it
curl
curl "https://api.sys84.org/v1/services/robinhood_token_traction_audit" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.sys84.org/v1/services/robinhood_token_traction_audit");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.sys84.org/v1/services/robinhood_token_traction_audit")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8659.json, and this resource appears in /discovery/resources and /discovery/search.