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

NameTypeRequiredDescription
symbolstringyes

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

FieldTypeDescription
symbolstringTrading pair symbol
openstringOpening price for 24h period
highstringHighest price in 24h
lowstringLowest price in 24h
closestringClosing price
changesarrayPrice changes
bidstringCurrent bid price
askstringCurrent 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.

Regenerated from source · build July 6, 2026