# RobinX Cross-Venue First Sighting

> RobinX Cross-Venue First Sighting is a paid API for AI agents from api.robinx.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns which platform (Telegram or X/Twitter) first mentioned a Robinhood Chain token and how many minutes ahead it was

## Facts

- Endpoint: GET https://api.robinx.io/tg/first-call/:token
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinx-cross-venue-first-sighting-974d8db2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Zx1ycJCq26xx0pywfSUP8

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-cross-venue-first-sighting-974d8db2
```

Example prompt: Can you check whether Telegram or X first called the Robinhood Chain token at address 0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f, and how many minutes ahead the first platform was?

## When to prefer this

Use this endpoint when you specifically need to know which social platform (Telegram vs X) first discovered or called a Robinhood Chain token and the temporal gap between them. Prefer this over general token analytics endpoints when the cross-venue lead time and platform priority are the key signal — e.g., for identifying whether Telegram alpha groups consistently front-run X callers on specific tokens.

## Known failure modes

- Token address not found or not yet tracked — likely returns empty or null data fields
- Invalid token address format (non-0x 40-char hex) — may return 400 error or no results
- Token has only been seen on one platform — lead_minutes and cross-venue comparison may be null
- Corpus data may be delayed relative to real-time — corpus_through timestamp indicates lag
- Network or payment failure via x402 protocol — results in 402 or connection error

## How this service works

Cross-venue first sighting: when Telegram first carried this token, when X first did, and the lead between them

## Output

Returns a JSON object containing the token address, timestamps of the first mention on both Telegram and X, the lead time in minutes between them, a boolean indicating whether Telegram was first, the number of Telegram mentions, the number of distinct Telegram sources, and a corpus_through timestamp indicating data freshness.

## 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": "Robinhood Chain token address (0x…40 hex) — required"
      }
     },
     "required": [
      "token"
     ]
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "data": {
      "token": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
      "reportable": true,
      "k_threshold": 3,
      "telegram_first_at": "2026-07-19T08:34:18Z",
      "x_first_at": "2026-07-19T12:00:13Z",
      "lead_minutes": 205.9,
      "telegram_was_first": true,
      "telegram_mentions": 18,
      "telegram_source_count": 8,
      "corpus_through": "2026-08-22T23:33:00Z"
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "data": {
  "token": "0x7fe995a80075df3dc8ae11a9b82c7fe4202cd87f",
  "x_first_at": "2026-07-19T12:00:13Z",
  "lead_minutes": 205.9,
  "corpus_through": "2026-08-22T23:33:00Z",
  "seen_on_telegram": true,
  "telegram_first_at": "2026-07-19T08:34:18Z",
  "telegram_mentions": 18,
  "telegram_was_first": true,
  "telegram_source_count": 8
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinx-cross-venue-first-sighting-974d8db2/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)
