# HALOWERK marktwerk – Perpetual Futures Funding Rate

> HALOWERK marktwerk – Perpetual Futures Funding Rate is a paid API for AI agents from markt.netzhandwerker.de, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns real-time funding rate data for a specified perpetual futures trading pair across one or more major crypto derivatives exchanges.

## Facts

- Endpoint: POST https://markt.netzhandwerker.de/funding
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/halowerk-marktwerk-perpetual-futures-funding-rate-48769613
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x5ypNqfBLY1XMWO7puTPE

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 halowerk-marktwerk-perpetual-futures-funding-rate-48769613 -d '<json body>'
```

Example prompt: What's the current funding rate for BTC/USDT perpetuals on Binance Futures and Bybit right now?

## When to prefer this

Use this endpoint when you need real-time perpetual futures funding rate data across Binance Futures, Bybit, and/or OKX in a single paid API call. It is particularly valuable for cross-venue comparison, arbitrage detection, and systematic trading signals where funding rate direction matters. Prefer this over scraping exchange UIs or querying each exchange API individually.

## Known failure modes

- Invalid symbol format not matching BASE/QUOTE pattern returns validation error
- Requested venue not in the allowed enum (binance-futures, bybit, okx) returns error
- Symbol not listed on selected venue returns empty or error response
- Payment failure via x402 / insufficient USDC balance blocks the request
- Exchange API downtime may cause missing or partial venue results

## How this service works

HALOWERK marktwerk — bezahlte Endpunkte nach x402. Preise in USDC auf Base Mainnet.

## Output

Returns funding rate data for the requested perpetual symbol (e.g. BTC/USDT) from the specified exchange venues (Binance Futures, Bybit, OKX). Typically includes the current funding rate value per venue, allowing comparison across exchanges.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "pattern": "^[A-Za-z0-9]{2,15}/[A-Za-z0-9]{2,15}$",
   "description": "Perpetual as BASE/QUOTE, for example BTC/USDT. Most perpetuals are quoted in USDT."
  },
  "venues": {
   "type": "array",
   "items": {
    "enum": [
     "binance-futures",
     "bybit",
     "okx"
    ],
    "type": "string"
   },
   "maxItems": 3,
   "minItems": 1,
   "description": "Perpetual venues to query. Without it all connected ones are used.",
   "uniqueItems": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/halowerk-marktwerk-perpetual-futures-funding-rate-48769613/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from markt.netzhandwerker.de](https://www.zero.xyz/host/markt.netzhandwerker.de/llms.txt)
