symbol_details

Pack: gemini-crypto · Endpoint: https://gateway.pipeworx.io/gemini-crypto/mcp

Fetch trading pair metadata from Gemini for a symbol: base/quote currency, tick size, quote increment, min order size, and status.

Parameters

NameTypeRequiredDescription
symbolstringyes

Example call

Arguments

{
  "symbol": "btcusd"
}

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":"symbol_details","arguments":{"symbol":"btcusd"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('symbol_details', {
  "symbol": "btcusd"
});

Response shape

FieldTypeDescription
symbolstringTrading pair symbol
base_currencystringBase currency code
quote_currencystringQuote currency code
tick_sizenumberMinimum price increment
quote_incrementnumberMinimum quote currency increment
min_order_sizestringMinimum order size
statusstringTrading pair status
wrap_enabledbooleanWhether wrapping is enabled
Full JSON Schema
{
  "type": "object",
  "properties": {
    "symbol": {
      "type": "string",
      "description": "Trading pair symbol"
    },
    "base_currency": {
      "type": "string",
      "description": "Base currency code"
    },
    "quote_currency": {
      "type": "string",
      "description": "Quote currency code"
    },
    "tick_size": {
      "type": "number",
      "description": "Minimum price increment"
    },
    "quote_increment": {
      "type": "number",
      "description": "Minimum quote currency increment"
    },
    "min_order_size": {
      "type": "string",
      "description": "Minimum order size"
    },
    "status": {
      "type": "string",
      "description": "Trading pair status"
    },
    "wrap_enabled": {
      "type": "boolean",
      "description": "Whether wrapping is enabled"
    }
  }
}

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