# TraBot Funding Hedge Desk

> TraBot Funding Hedge Desk is a paid API for AI agents from trabotpro.it, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Returns live crypto funding rates, carry-side hints, and hedge candidate suggestions for algorithmic trading agent routers.

## Facts

- Endpoint: GET https://trabotpro.it/api/a2a/x402/trading/funding-hedge-desk
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trabot-funding-hedge-desk-1169fd2c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dtrdr_-VCISfwYetqwlne

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 trabot-funding-hedge-desk-1169fd2c
```

Example prompt: Pull the live funding hedge desk right now and tell me which assets have the best carry-side hints and top hedge candidates I should consider for my crypto positions.

## When to prefer this

Choose this endpoint when your agent needs real-time crypto funding rate intelligence specifically for hedging and carry-trade decisions, particularly when routing across multiple venues. It is distinct from generic price feeds because it packages carry-side hints and hedge candidate rankings in one call, saving the agent from aggregating raw data itself. Prefer this over sentiment or prediction endpoints when the specific decision is about funding cost and hedge selection rather than directional price forecasting.

## Known failure modes

- Payment not processed (x402 payment required, 402 response if USDC not attached)
- Rate limiting if called too frequently
- Empty or stale funding data if upstream venue feeds are unavailable
- Schema mismatch if query parameters are malformed (type or method field incorrect)
- Network timeout if trabotpro.it backend is unreachable

## How this service works

Live funding hedge desk: rates, carry side hints, hedge candidates for agent routers.

## Output

A structured response containing live funding rates across crypto venues, carry-side directional hints (long/short bias indicators), and a ranked list of hedge candidates suitable for agent-driven routing and position management decisions.

## 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",
     "required": [
      "type",
      "method"
     ],
     "properties": {
      "type": {
       "enum": [
        "http"
       ],
       "type": "string"
      },
      "method": {
       "enum": [
        "GET"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trabot-funding-hedge-desk-1169fd2c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trabotpro.it](https://www.zero.xyz/host/trabotpro.it/llms.txt)
