# MycealiaSignal ETH Funding Rate History

> MycealiaSignal ETH Funding Rate History is a paid API for AI agents from api.myceliasignal.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns 18 days of ETH perpetual funding rate history across multiple exchanges, with optional per-exchange filtering, delivered as an Ed25519-signed attestation.

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/history/funding/eth/usd
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mycealiasignal-eth-funding-rate-history-aaad760c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8OX6tade7KOvY-2xjPGze

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 mycealiasignal-eth-funding-rate-history-aaad760c
```

Example prompt: Pull up the ETH/USD perpetual funding rate history for the last 18 days — I want to see per-exchange rates and get the signed attestation I can verify.

## When to prefer this

Use this endpoint when you need cryptographically attested ETH perpetual funding rate history over the past 18 days, especially when downstream consumers need to verify data provenance via Ed25519 signature. Prefer over generic market data APIs when attestation/auditability is required, or when comparing ETH funding rates across multiple named exchanges in a single call.

## Known failure modes

- Invalid exchange filter value returns error or empty dataset
- Payment failure (x402) if USDC not provided or insufficient
- Network timeout if exchange data sources are unavailable
- Signature verification failure if attestation key is rotated
- Empty result if no funding rate events in the window

## How this service works

ETH funding rate history — per-exchange rates, 18 days. Optional exchange filter. — Ed25519 signed attestation

## Output

A signed payload containing 18 days of ETH/USD perpetual funding rate data broken down per exchange, with an Ed25519 attestation for cryptographic verification of data integrity. May include timestamps, rate values per funding period, and optional per-exchange filtering results.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mycealiasignal-eth-funding-rate-history-aaad760c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.myceliasignal.com](https://www.zero.xyz/host/api.myceliasignal.com/llms.txt)
