# Mecker Capital Basis Arbitrage Opportunities

> Mecker Capital Basis Arbitrage Opportunities is a paid API for AI agents from api.meckercapital.com, paid per call via x402, $0.500000/call, status unknown (last checked 2026-09-14).

Returns top funding-rate basis arbitrage opportunities between Extended Exchange and Hyperliquid perpetuals, ranked by absolute APR with full statistical metrics per pair.

## Facts

- Endpoint: GET https://api.meckercapital.com/v1/basis/opportunities
- Price: $0.500000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-meckercapital-com-d9311bfc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gUHnGahDWZji-2Pk_7DRj

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

Example prompt: Show me the top 10 funding-rate basis arbitrage opportunities between Extended Exchange and Hyperliquid right now, but only ones with an absolute APR above 5%.

## When to prefer this

Use this endpoint when you need a ranked, ready-to-use list of the best current basis arbitrage opportunities across Extended Exchange and Hyperliquid, with full statistical validation (t-stat, hit rate, drawdown). Prefer this over the historical spread time-series endpoint when you want actionable signals rather than raw data, and over the pair cointegration endpoints when your focus is funding-rate carry rather than price mean-reversion.

## Known failure modes

- No opportunities meet the min_apr_pct filter — returns empty opportunities array
- limit out of range (must be 1–50) — returns 400 validation error
- Payment not provided or insufficient — returns 402 Payment Required
- Service temporarily unavailable — returns 503 error
- Stale market data may cause APR estimates to lag real-time conditions

## How this service works

Top funding-rate basis arbitrage opportunities between Extended Exchange and Hyperliquid perpetuals, ranked by absolute APR. Delta-neutral pairs trade: long one venue, short the other, capture cross-venue funding spread. Returns signed APR, t-stat, hit rate, worst-period APR, direction, and venue per leg. Cash-and-carry / funding-rate arbitrage on crypto perpetuals.

## Output

A ranked list of delta-neutral basis arbitrage opportunities, each with signed APR, t-statistic, hit rate, worst-period APR, trade direction (long/short), and which venue (Extended or Hyperliquid) to use per leg — filtered and sorted by absolute APR descending.

## 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": {
      "limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1
      },
      "min_apr_pct": {
       "type": "number",
       "description": "Filter out pairs whose |APR| is below this percentage."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "meta": {
       "type": "object"
      },
      "opportunities": {
       "type": "array",
       "items": {
        "type": "object"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

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