mirrored listing x402 eip155:8453

Bybit (primary) / Binance (fallback) perpetual futures funding rate - the key signal for l

Bybit (primary) / Binance (fallback) perpetual futures funding rate - the key signal for long/short crowding that traders use to time or hedge positions before the next funding settlement.

Do you run alphapipeline-eu.onrender.com? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-03
updated

Provider

alphapipeline-eu.onrender.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x2bcfA4F7E1fA5E96934846A7dEa623398Ed7f752",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "10000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "symbol": "BTC"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "data_source": "bybit",
          "funding_interval_hours": 8,
          "funding_rate": 0.0001,
          "funding_rate_percentage": 0.01,
          "generated_at": {
            "kst": "2026-09-04 21:00:00 KST",
            "utc": "2026-09-04T12:00:00Z"
          },
          "next_funding_time": {
            "kst": "2026-09-05 01:00:00 KST",
            "utc": "2026-09-04T16:00:00Z"
          },
          "notice": "펀딩비는 다음 정산 시점(next_funding_time)에 적용될 예정 요율입니다. Bybit/바이낸스 둘 다 이와 별개의 '예측' 필드를 제공하지 않으므로 predicted_rate는 funding_rate와 동일한 값입니다.",
          "predicted_rate": 0.0001,
          "symbol": "BTCUSDT"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET",
                "HEAD",
                "DELETE"
              ],
              "type": "string"
            },
            "queryParams": {
              "properties": {
                "symbol": {
                  "description": "Ticker symbol, e.g. BTC, ETH, or BTCUSDT.",
                  "type": "string"
                }
              },
              "required": [
                "symbol"
              ],
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "data_source": {
                  "title": "Data Source",
                  "type": "string"
                },
                "funding_interval_hours": {
                  "anyOf": [
                    {
                      "type": "integer"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "default": null,
                  "title": "Funding Interval Hours"
                },
                "funding_rate": {
                  "anyOf": [
                    {
                      "type": "number"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "default": null,
                  "title": "Funding Rate"
                },
                "funding_rate_percentage": {
                  "anyOf": [
                    {
                      "type": "number"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "default": null,
                  "title": "Funding Rate Percentage"
                },
                "generated_at": {
                  "properties": {
                    "kst": {
                      "title": "Kst",
                      "type": "string"
                    },
                    "utc": {
                      "title": "Utc",
                      "type": "string"
                    }
                  },
                  "required": [
                    "utc",
                    "kst"
                  ],
                  "title": "TimestampPair",
                  "type": "object"
                },
                "next_funding_time": {
                  "anyOf": [
                    {
                      "properties": {
                        "kst": {
                          "title": "Kst",
                          "type": "string"
                        },
                        "utc": {
                          "title": "Utc",
                          "type": "string"
                        }
                      },
                      "required": [
                        "utc",
                        "kst"
                      ],
                      "title": "TimestampPair",
                      "type": "object"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "default": null
                },
                "notice": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "default": null,
                  "title": "Notice"
                },
                "predicted_rate": {
                  "anyOf": [
                    {
                      "type": "number"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "default": null,
                  "title": "Predicted Rate"
                },
                "symbol": {
                  "title": "Symbol",
                  "type": "string"
                }
              },
              "required": [
                "generated_at",
                "symbol",
                "data_source"
              ],
              "title": "FundingRateResponse",
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://alphapipeline-eu.onrender.com/v1/derivatives/funding-rate"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://alphapipeline-eu.onrender.com/v1/derivatives/funding-rate");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://alphapipeline-eu.onrender.com/v1/derivatives/funding-rate")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/8005.json, and this resource appears in /discovery/resources and /discovery/search.