# Mecker Capital Crypto Pair Trading Opportunities Scanner

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

Returns a ranked list of the best statistical arbitrage opportunities across cointegrated perpetual futures pairs, sorted by signal strength.

## Facts

- Endpoint: GET https://api.meckercapital.com/v1/premium/opportunities
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-meckercapital-com-01668de5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WVWrdAKOVVTz-gN9pXp2m

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-01668de5
```

Example prompt: Show me the top 10 best crypto pairs trading opportunities available right now, ranked by signal strength, using the Mecker Capital cointegrated perpetuals scanner.

## When to prefer this

Use this endpoint when you need a broad, ranked overview of all currently actionable cointegrated crypto pairs by signal strength — ideal for portfolio-level scanning before drilling into individual pairs. Prefer this over the single-pair signal endpoint when you don't yet know which pair to focus on. Prefer over the bulk z-scores endpoint when you want pre-filtered, ranked opportunities rather than raw signal data for all pairs.

## Known failure modes

- max_pairs out of range (must be 1-50) returns 400 validation error
- payment not received or invalid x402 payment header returns 402
- API key or authentication issue returns 401/403
- No opportunities currently meeting signal threshold returns empty opportunities array
- Rate limiting or service overload returns 429 or 503

## How this service works

Ranked list of the best crypto pair trading opportunities right now, sorted by signal strength. Statistical arbitrage opportunity scanner across all cointegrated perpetual futures pairs.

## Output

An array of ranked pair trading opportunities across all screened cointegrated perpetual futures pairs, each including signal strength and pair details; plus total_screened (number of pairs evaluated) and total_with_signal (number of pairs currently showing a tradeable signal).

## Example request

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

## 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": {
      "max_pairs": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "opportunities": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "total_screened": {
       "type": "integer"
      },
      "total_with_signal": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

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