ticker
Pack: okx · Endpoint: https://gateway.pipeworx.io/okx/mcp
OKX crypto exchange — single instrument ticker (e.g. “BTC-USDT”, “BTC-USD-SWAP”). Returns bid/ask, last, 24h vol/change. Use for current pricing of an OKX-listed instrument.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
instId | string | yes |
Example call
Arguments
{
"instId": "BTC-USDT"
}
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":"ticker","arguments":{"instId":"BTC-USDT"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ticker', {
"instId": "BTC-USDT"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Response from OKX ticker 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.