# Binance Alpha × Futures Cross-Reference Lookup

> Binance Alpha × Futures Cross-Reference Lookup is a paid API for AI agents from vit-tu-ma-production.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Cross-references Binance Alpha listed tokens against USDT-M perpetual futures to identify which tokens have futures markets available and which are spot-only, with listing metadata.

## Facts

- Endpoint: GET https://vit-tu-ma-production.up.railway.app/api/bazaar/alpha-futures-cross
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/binance-alpha-futures-cross-reference-lookup-a4f03d4e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gwct2N0BfyHbQXYubBKBt

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 binance-alpha-futures-cross-reference-lookup-a4f03d4e
```

Example prompt: Check if any Binance Alpha tokens currently have USDT-M perpetual futures markets — I want to know which ones I can short or hedge, and which are stuck as spot-only.

## When to prefer this

Use this endpoint when building new-listing momentum strategies that require knowing whether an Alpha token can be shorted or hedged via perpetual futures. Prefer this over manual Binance API queries when you need a pre-joined, deduplicated cross-reference of Alpha listings vs futures markets in one call.

## Known failure modes

- Invalid or unrecognized token symbol returns empty match set or 404
- Binance API upstream unavailability causes stale or missing data
- Token symbol case sensitivity mismatch yields no results
- Rate limiting or payment failure returns 402 or 429 error

## How this service works

Cross-references Binance Alpha listed tokens against Binance USDT-M perpetual futures. Identifies which Alpha tokens already have futures markets (short-availability, hedging) and which are spot-only — a key signal for new-listing momentum strategies. Returns matched pairs with listing metadata.

## Output

Returns a list of matched token pairs showing which Binance Alpha tokens have corresponding USDT-M perpetual futures markets, including listing metadata. Also identifies tokens that are spot-only with no futures availability — useful for gauging new-listing momentum and hedging opportunities.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Token symbol (optional, fetches all if omitted)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/binance-alpha-futures-cross-reference-lookup-a4f03d4e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vit-tu-ma-production.up.railway.app](https://www.zero.xyz/host/vit-tu-ma-production.up.railway.app/llms.txt)
