# Mecker Capital Tradeable Cointegrated Crypto Pairs List

> Mecker Capital Tradeable Cointegrated Crypto Pairs List is a paid API for AI agents from api.meckercapital.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns all cointegrated crypto perpetual futures pairs with regime classification, z-scores, and LONG/SHORT/FLAT spread signals for statistical arbitrage.

## Facts

- Endpoint: GET https://api.meckercapital.com/v1/pairs/tradeable
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-meckercapital-com-c023c6d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W8Xv5fVtgezy__-qfEKrx

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 api-meckercapital-com-c023c6d9
```

Example prompt: Show me all the cointegrated crypto perpetual futures pairs that are at least GREEN regime quality — I want to see their z-scores and whether I should be long or short the spread right now.

## When to prefer this

Use this endpoint when you need a full-market scan of all currently tradeable cointegrated crypto pairs with regime quality filters — ideal for portfolio-level screening before drilling into individual pair details. Prefer this over the single-pair or ranked endpoints when you want the complete universe of cointegrated pairs and intend to apply your own downstream filtering or ranking logic.

## Known failure modes

- Invalid min_regime value returns 422 validation error
- No pairs meet the requested regime threshold — returns empty pairs array
- Payment not processed (x402) — returns 402 Payment Required
- Service temporarily unavailable — returns 503
- Stale data if cointegration engine has not refreshed recently

## How this service works

List all cointegrated crypto perpetual futures pairs for statistical arbitrage. Returns regime classification (GREEN/YELLOW/RED), z-score, and signal direction (LONG_SPREAD/SHORT_SPREAD/FLAT). Engle-Granger cointegration, mean reversion, market-neutral pair trading on crypto derivatives.

## Output

An array of cointegrated crypto perpetual futures pairs, each with pair_key, asset_a, asset_b, regime (GREEN/YELLOW/RED), z_score, signal (LONG_SPREAD/SHORT_SPREAD/FLAT), and last_updated timestamp, plus a meta object with summary statistics.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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": {
      "min_regime": {
       "enum": [
        "GREEN",
        "YELLOW",
        "RED"
       ],
       "type": "string",
       "description": "Lowest regime quality to include."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "meta": {
       "type": "object"
      },
      "pairs": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "regime": {
          "type": "string"
         },
         "signal": {
          "type": "string"
         },
         "asset_a": {
          "type": "string"
         },
         "asset_b": {
          "type": "string"
         },
         "z_score": {
          "type": "number"
         },
         "pair_key": {
          "type": "string"
         },
         "last_updated": {
          "type": "string"
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-meckercapital-com-c023c6d9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.meckercapital.com](https://www.zero.xyz/host/api.meckercapital.com/llms.txt)
