# RobinX Composite Token Buy-Risk Verdict

> RobinX Composite Token Buy-Risk Verdict is a paid API for AI agents from api.robinx.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a composite buy-risk verdict (signal + confidence) for a Robinhood Chain token based on deployer reputation and on-chain signals

## Facts

- Endpoint: GET https://api.robinx.io/verdict/:token
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinx-composite-token-buy-risk-verdict-3efc7922
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4M0A5LSeT4lI-S3mfoLou

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 robinx-composite-token-buy-risk-verdict-3efc7922
```

Example prompt: Can you check RobinX and give me the buy-risk verdict for the Robinhood Chain token at contract address 0x4a8b...c21f — I want to know the signal and how confident the score is before I consider buying.

## When to prefer this

Use this endpoint when you need a fast, single-call composite risk verdict on a Robinhood Chain token — combining deployer reputation, on-chain history, and caller signal — without having to aggregate multiple individual data sources yourself. Prefer it over raw on-chain lookups when you want a pre-computed 'buy/avoid' signal with a confidence score.

## Known failure modes

- Invalid or malformed token address returns an error or empty result
- Token contract not indexed on Robinhood Chain (chain 4663) may return no data
- Low deployer activity may produce a low-confidence verdict
- Network timeouts or API unavailability return HTTP errors
- Payment failure via x402 protocol blocks the request

## How this service works

Composite token buy-risk verdict

## Output

Returns a JSON object with a deployer_score (integer), a deployer_record showing real launches and total launches, a signal string (e.g. 'avoid' or 'buy'), and a confidence float (0–1) indicating how strongly the composite model backs that verdict.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "token": {
       "type": "string",
       "description": "token contract address 0x…"
      }
     },
     "required": [
      "token"
     ]
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "signal": "avoid",
     "confidence": 0.86,
     "data": {
      "deployer_score": 12,
      "deployer_record": {
       "launched": 40,
       "real": 1
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "data": {
  "deployer_score": 12,
  "deployer_record": {
   "real": 1,
   "launched": 40
  }
 },
 "signal": "avoid",
 "confidence": 0.86
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinx-composite-token-buy-risk-verdict-3efc7922/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.robinx.io](https://www.zero.xyz/host/api.robinx.io/llms.txt)
