← Marketplace
Base
Cryptyx
Cryptyx is an x402-native service at https://cryptyx.ai, indexed from the x402 Bazaar (Coinbase's public discovery directory). It charges callers itself in USDC on Base and is paid directly at its own wallet; Monex Protocol passes your request and payment headers through untouched. 11 endpoints listed.
Offers
| Offer | Endpoint | Price |
|---|---|---|
Ai Signals Per-asset bundle of the latest atomic and composite signal snapshot plus N-day event lookback, grouped by asset. Includes macro regime and confidence. The full signal picture for an agent prompt in one call. | /m/bz-cryptyx-ai/api/ai/signals | 0.01 USDC |
Asset Asymmetry Cross-class positioning panels per asset — futures funding stress, options 1M risk-reversal skew, order-book imbalance, and 7-day taker buy/sell ratio. Each panel: current z, percentile, 30-day sparkline, one-line narrative. Response carries a _next block with active-signals / thesis / regime-context / top-setups / peer-cluster so an agent can go from positioning read to per-asset conviction, hist | /m/bz-cryptyx-ai/api/asset/asymmetry | 0.05 USDC |
Api Funding Rate Aggregated-exchange daily perpetual funding rate per asset, last N days. Raw feed — no annualisation, no z-score. Cheap historical input for carry-trade backtests and crowding diagnostics. | /m/bz-cryptyx-ai/api/funding-rate | 0.01 USDC |
Market Pulse Temporal Layers Tactical / strategic / secular regime decomposition + Supertrend score across a 1-1900 day lookback. Shows regime alignment across timescales — is the market in agreement or diverging? Complements /market-pulse/regime by decomposing multi-horizon consistency into named layers. | /m/bz-cryptyx-ai/api/market-pulse/temporal-layers | 0.01 USDC |
Signals Catalog The entry point for agents landing on CRYPTYX. Returns the full signal registry (every atomic and composite signal, all versions) with class, horizon, geometry, parameters, 30-day trigger stats, three-axis health grades, walk-forward IS/OOS — plus a meta.service block (universe + walk-forward + macro-regime + OKX/Kraken/Coinbase venues), a meta.by_class strategy-family breakdown, a meta.next recom | /m/bz-cryptyx-ai/api/signals/catalog | 0.01 USDC |
Composite Heatmap The most information-dense endpoint on the surface — 3 MB / 149K leaves per call. Latest N days of master composite scores per (asset × horizon) with ranks + per-class composite matrix + macro regime context + intraday micro-regime state, all in one call. Replaces 4 separate premium calls (composite/breadth + factor-cross-section + market-pulse/regime + one asset-scoped call). Priced at Trade Idea | /m/bz-cryptyx-ai/api/signals/composite/heatmap | 0.1 USDC |
Signals Fork Fork a signal into an inactive parameter variant — production firing is untouched. Experimentation primitive: fork, dryrun-backtest, then activate. Returns the new version id and parameters. | /m/bz-cryptyx-ai/api/signals/fork | 0.05 USDC |
Signals Simulate Pre-flight threshold simulator — count how many assets would trigger at a proposed cutoff for one anchor day, with current vs proposed threshold and estimated trigger rate. Use before forking parameters. | /m/bz-cryptyx-ai/api/signals/simulate | 0.05 USDC |
Api Taker Flow Daily taker buy/sell USD and buy/sell ratio per asset, split into spot and futures arrays, last N days. Raw tape for custom flow models. | /m/bz-cryptyx-ai/api/taker-flow | 0.01 USDC |
Ai Trade Ideas CRYPTYX is the intelligence layer for autonomous trading agents — the same institutional-grade research stack that powers professional desks, priced per call in USDC. 200+ digital assets, 440+ metrics, 150+ signals across 8 factor classes, walk-forward validated, macro-regime aware. Agents don't just consume signals. They backtest any factor over 5+ years of history (Metric Slicer), fork and valid | /m/bz-cryptyx-ai/api/v1/ai/trade-ideas | 0.1 USDC |
X402 Health Service health probe — build version, last pipeline run, current signal/composite/asset counts. Sub-second, no DB writes. The cheapest end-to-end pay-per-call check before issuing real queries. | /m/bz-cryptyx-ai/api/x402/health | 0.01 USDC |
Machine-readable: openapi.json with x-payment-info offers.
Try it live
Run the full MPP flow from your browser: catch the 402, sign the payment with your wallet, and watch it settle on-chain.
This merchant settles over the mppx rail; pay it from an agent with the snippet below.
Pay with an agent
Any MPP or x402-compatible client works. With mppx, payment is automatic:
import { Mppx, evm } from 'mppx/client'
import { privateKeyToAccount } from 'viem/accounts'
const mppx = Mppx.create({
methods: [evm({
account: privateKeyToAccount(process.env.KEY),
currencies: [evm.assets.base.USDC],
})],
})
const res = await mppx.fetch('https://api.meshgateway.co/m/bz-cryptyx-ai/api/ai/signals')
// 402 challenge signed and settled automatically; response includes Payment-ReceiptOr inspect the challenge yourself:
curl -i https://api.meshgateway.co/m/bz-cryptyx-ai/api/ai/signals # HTTP/1.1 402 Payment Required # WWW-Authenticate: Payment id="…", method="evm", intent="charge", …