# RobinX Deployer Reputation Score

> RobinX Deployer Reputation Score is a paid API for AI agents from api.robinx.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a reputation rap sheet for a blockchain deployer address on Robinhood Chain, including counts of dead/real tokens launched and a composite reputation score.

## Facts

- Endpoint: GET https://api.robinx.io/deployer/:address
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinx-deployer-reputation-score-106ce91e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O-3gBeM6A90T5RLkODZ7v

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-deployer-reputation-score-106ce91e
```

Example prompt: What's the deployer reputation score for 0x1234...abcd on Robinhood Chain — how many tokens have they launched, how many are dead, and how many are real?

## When to prefer this

Use this endpoint when you need a quick reputation profile of a specific deployer address on Robinhood Chain (chain 4663) — particularly to assess how many of their prior token launches survived versus died. Prefer this over the composite token buy-risk verdict when you want deployer-specific history rather than a per-token verdict, and over the holder-structure or social endpoints when the focus is on the creator's track record rather than current holders or social sentiment.

## Known failure modes

- Invalid or malformed address format returns an error
- Address not found on Robinhood Chain returns empty or zero stats
- Network timeout or API unavailability returns 5xx
- Address is a regular wallet with no deployer history may return zeroed counters

## How this service works

Deployer reputation rap sheet

## Output

Returns a JSON object with a numeric reputation score (e.g. 78), count of dead tokens launched, count of real/surviving tokens, and total tokens launched by the deployer, plus a 'signal' field identifying this as deployer-type data.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "wallet/token contract address 0x…"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "data": {
      "dead": 9,
      "real": 3,
      "score": 78,
      "launched": 12
     },
     "signal": "deployer"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "data": {
  "dead": 9,
  "real": 3,
  "score": 78,
  "launched": 12
 },
 "signal": "deployer"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinx-deployer-reputation-score-106ce91e/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)
