Token-level feature row for one Robinhood Chain token: launch facts, current activity/depl
Token-level feature row for one Robinhood Chain token: launch facts, current activity/deployer/price/caller state, and the observed mention record — inputs for your own model (no score, no recommendation)
30000 (raw units)
price
6
calls / 30d
6
unique payers
2026-09-09
updated
Provider
api.robinx.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xA13d363AeCCCF878Ec64f6eB687Eb4A771FB0599",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"discoverable": true,
"info": {
"input": {
"method": "GET",
"queryParams": {
"token": "0x020bfC650A365f8BB26819deAAbF3E21291018b4"
},
"type": "http"
},
"output": {
"example": {
"data": {
"chain": "robinhood-4663",
"coverage": {
"chain": "4663 only"
},
"current_state": {
"activity": {
"is_real": true,
"measured": true,
"swaps": 84864,
"traders": 10808,
"weth_vol": 69121.878
},
"caller_state": {
"available": true,
"best_caller_early_rate": 0.8,
"measured_caller_count": 62
},
"deployer_record": {
"available": true,
"launched": 9,
"score": 68
},
"history": "none - recomputed in place",
"price": {
"fdv_weth": 25023.24,
"last_px_weth": 0.0000250232,
"stale": false
},
"structure": {
"available": false
}
},
"identity": {
"first_observed_at": "2026-07-12T09:14:00Z",
"launch_block": 88836,
"symbol": "CASHCAT"
},
"known": true,
"observed": {
"clock": "captured_at - immutable",
"mentions": {
"available": true,
"total": 867
}
},
"point_in_time": false,
"token": "0x020bfC650A365f8BB26819deAAbF3E21291018b4"
}
},
"type": "json"
}
},
"routeTemplate": "/agent/features",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"queryParams": {
"properties": {
"token": {
"description": "Robinhood Chain token address (0x…40 hex) — required",
"type": "string"
}
},
"required": [
"token"
],
"type": "object"
}
},
"type": "object"
},
"output": {
"properties": {
"example": {
"data": {
"chain": "robinhood-4663",
"coverage": {
"chain": "4663 only"
},
"current_state": {
"activity": {
"is_real": true,
"measured": true,
"swaps": 84864,
"traders": 10808,
"weth_vol": 69121.878
},
"caller_state": {
"available": true,
"best_caller_early_rate": 0.8,
"measured_caller_count": 62
},
"deployer_record": {
"available": true,
"launched": 9,
"score": 68
},
"history": "none - recomputed in place",
"price": {
"fdv_weth": 25023.24,
"last_px_weth": 0.0000250232,
"stale": false
},
"structure": {
"available": false
}
},
"identity": {
"first_observed_at": "2026-07-12T09:14:00Z",
"launch_block": 88836,
"symbol": "CASHCAT"
},
"known": true,
"observed": {
"clock": "captured_at - immutable",
"mentions": {
"available": true,
"total": 867
}
},
"point_in_time": false,
"token": "0x020bfC650A365f8BB26819deAAbF3E21291018b4"
}
}
},
"type": "object"
}
}
}
}
}Use it
curl
curl "https://api.robinx.io/agent/features" # -> 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.robinx.io/agent/features");
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.robinx.io/agent/features")
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/796.json, and this resource appears in /discovery/resources and /discovery/search.