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
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | yes |
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
| Field | Type | Description |
|---|---|---|
symbol | string | Trading pair symbol |
base_currency | string | Base currency code |
quote_currency | string | Quote currency code |
tick_size | number | Minimum price increment |
quote_increment | number | Minimum quote currency increment |
min_order_size | string | Minimum order size |
status | string | Trading pair status |
wrap_enabled | boolean | Whether 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.