# Heurist Mesh FundingRateAgent

> Heurist Mesh FundingRateAgent is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns current perpetual futures funding rates for BTC, ETH, SOL, BNB, and XRP on Binance

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/FundingRateAgent/get_all_funding_rates
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heurist-mesh-fundingrateagent-7ae59198
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dUNpF2Bd-uRd0X4c04ZYr

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 heurist-mesh-fundingrateagent-7ae59198 -d '<json body>'
```

Example prompt: What are the current Binance perpetual funding rates for BTC, ETH, SOL, BNB, and XRP? I want to see if the market is skewed heavily long or short right now.

## When to prefer this

Choose this endpoint when you need a fast, single-call snapshot of current funding rates across the five most liquid crypto perpetuals on Binance. Prefer this over building a custom Binance API integration when you need lightweight, pay-per-use access to funding rate data without managing API keys or rate limits.

## Known failure modes

- Binance API unavailable or rate-limited — may return stale or empty data
- Network timeout to Heurist Mesh — returns HTTP error or no response
- Payment failure via x402 — call rejected if USDC payment is not attached correctly
- Partial data — one or more symbols may be missing if Binance feed is incomplete

## How this service works

Get current funding rates for major Binance perpetual symbols: BTC, ETH, SOL, BNB, XRP. Useful to identify overall perp market situation.

## Output

Returns the current funding rates for each of the five major Binance perpetual symbols (BTC, ETH, SOL, BNB, XRP), indicating whether longs or shorts are paying and the magnitude of the rate, useful for inferring overall leverage and directional bias in the perpetual futures market.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "object",
       "additionalProperties": true
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/heurist-mesh-fundingrateagent-7ae59198/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mesh.heurist.xyz](https://www.zero.xyz/host/mesh.heurist.xyz/llms.txt)
