ticker_v2
Pack: gemini-crypto · Endpoint: https://gateway.pipeworx.io/gemini-crypto/mcp
Gemini crypto exchange v2 ticker with 24-hour rolling stats: open, high, low, last, changes, bid/ask, hourly closes. Use for daily summary on Gemini-listed pairs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | yes |
Example call
Arguments
{
"symbol": "ethusd"
}
curl
curl -X POST https://gateway.pipeworx.io/gemini-crypto/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ticker_v2","arguments":{"symbol":"ethusd"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ticker_v2', {
"symbol": "ethusd"
});
Response shape
| Field | Type | Description |
|---|---|---|
symbol | string | Trading pair symbol |
open | string | Opening price for 24h period |
high | string | Highest price in 24h |
low | string | Lowest price in 24h |
close | string | Closing price |
changes | array | Price changes |
bid | string | Current bid price |
ask | string | Current ask price |
Full JSON Schema
{
"type": "object",
"properties": {
"symbol": {
"type": "string",
"description": "Trading pair symbol"
},
"open": {
"type": "string",
"description": "Opening price for 24h period"
},
"high": {
"type": "string",
"description": "Highest price in 24h"
},
"low": {
"type": "string",
"description": "Lowest price in 24h"
},
"close": {
"type": "string",
"description": "Closing price"
},
"changes": {
"type": "array",
"items": {
"type": "string"
},
"description": "Price changes"
},
"bid": {
"type": "string",
"description": "Current bid price"
},
"ask": {
"type": "string",
"description": "Current ask price"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"gemini-crypto": {
"url": "https://gateway.pipeworx.io/gemini-crypto/mcp"
}
}
}
See Getting Started for client-specific install steps.