funding_rate_history

Pack: okx · Endpoint: https://gateway.pipeworx.io/okx/mcp

OKX crypto exchange historical perpetual swap funding rates for a SWAP instrument (e.g. ‘BTC-USDT-SWAP’). Optional before/after (ms epoch) cursors and limit. Use for funding cost analysis.

Parameters

NameTypeRequiredDescription
instIdstringyes
beforestringno
afterstringno
limitnumberno

Example call

Arguments

{
  "instId": "BTC-USDT-PERP"
}

curl

curl -X POST https://gateway.pipeworx.io/okx/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"funding_rate_history","arguments":{"instId":"BTC-USDT-PERP"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('funding_rate_history', {
  "instId": "BTC-USDT-PERP"
});

More examples

{
  "instId": "ETH-USDT-PERP",
  "limit": 50
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Response from OKX historical funding rate endpoint"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "okx": {
      "url": "https://gateway.pipeworx.io/okx/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 8, 2026