# TokenGuard Futures Data API

> TokenGuard Futures Data API is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Retrieves cryptocurrency futures market data and analytics via the TokenGuard DeFi intelligence platform

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/futures
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-futures-data-api-bf3b90f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zelWf6WaLB_0dDJE27-M-

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 tokenguard-futures-data-api-bf3b90f0 -d '<json body>'
```

Example prompt: Can you pull the latest futures market data for BTC from TokenGuard — I need the current funding rate, open interest, and contract price?

## When to prefer this

Choose this endpoint when you need crypto futures-specific data (funding rates, open interest, contract details) as part of a broader DeFi research or trading workflow, especially when you are already integrated with the TokenGuard platform for ERC-20 safety and on-chain analytics. Best suited for agents that need micropayment-friendly, per-call pricing via x402 on Base.

## Known failure modes

- Invalid or unsupported futures symbol returns an error or empty result
- Insufficient USDC payment (requires $0.01 per call) causes payment rejection via x402 protocol
- Hugging Face Spaces hosting may introduce cold-start latency or downtime
- Malformed POST body with missing required fields returns a validation error
- Rate limiting or quota exhaustion if calling at high frequency

## How this service works

futures data for AI agents.

## Output

Returns a JSON object containing cryptocurrency futures market data such as funding rates, open interest, contract prices, and related on-chain analytics for the queried asset or trading pair.

## 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": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-futures-data-api-bf3b90f0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
