PCM

by rand-tech
Verified

get-funding-rates

Retrieve current funding rates for perpetual contracts by specifying the exchange, market type, and optional trading pair symbols for accurate financial analysis.

Instructions

Get current funding rates for perpetual contracts

Input Schema

NameRequiredDescriptionDefault
exchangeYesExchange ID (e.g., binance, bybit)
marketTypeNoMarket type (default: swap)swap
symbolsNoList of trading pair symbols (optional)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "exchange": { "description": "Exchange ID (e.g., binance, bybit)", "type": "string" }, "marketType": { "default": "swap", "description": "Market type (default: swap)", "enum": [ "future", "swap" ], "type": "string" }, "symbols": { "description": "List of trading pair symbols (optional)", "items": { "type": "string" }, "type": "array" } }, "required": [ "exchange" ], "type": "object" }
ID: ma2f8iji6w