# Mecker Capital Bulk Crypto Pair Trading Signals

> Mecker Capital Bulk Crypto Pair Trading Signals is a paid API for AI agents from api.meckercapital.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Returns z-scores and mean-reversion trading signals for all cointegrated crypto perpetual futures pairs in a single call, optionally filtered by market regime.

## Facts

- Endpoint: GET https://api.meckercapital.com/v1/premium/signals/all
- Price: $0.5/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-7a22aca3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-D-3CfTFhb7wt0ESbyFNk

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-7a22aca3
```

Example prompt: Pull the full market-neutral landscape from Mecker Capital — give me z-scores and trading signals for every cointegrated crypto perpetual futures pair right now, only showing pairs with at least a GREEN regime.

## When to prefer this

Choose this endpoint when you need a full-market sweep of all cointegrated crypto pairs in a single API call rather than querying pairs one by one. It is ideal for building dashboards, running portfolio-wide scans, or backtesting regime filters across the entire universe of perpetual futures pairs. Prefer this over the single-pair signal endpoint when breadth matters more than depth.

## Known failure modes

- Invalid min_regime value returns 400 error
- Payment required / 402 if x402 micropayment not completed
- Empty signals array if no pairs meet the specified regime threshold
- Rate limit or timeout if market data feed is delayed
- Service unavailable (503) during maintenance windows

## How this service works

Bulk z-scores and trading signals for every cointegrated crypto pair in one call. Full market-neutral landscape for statistical arbitrage. Quantitative trading signals across all perpetual futures pairs.

## Output

An array of objects for every cointegrated crypto pair, each containing the current z-score, trading signal, and regime classification (GREEN/YELLOW/RED), plus a meta object summarizing the overall scan — enabling a complete snapshot of all active statistical arbitrage opportunities across perpetual futures.

## 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"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "meta": {
       "type": "object"
      },
      "signals": {
       "type": "array",
       "items": {
        "type": "object"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-meckercapital-com-7a22aca3/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)
