product_stats

Pack: coinbase-exchange · Endpoint: https://gateway.pipeworx.io/coinbase-exchange/mcp

Coinbase Exchange 24-hour rolling stats for a crypto pair: open, high, low, last, volume, 30-day volume. Use for daily summary.

Parameters

NameTypeRequiredDescription
product_idstringyes

Example call

Arguments

{
  "product_id": "BTC-USD"
}

curl

curl -X POST https://gateway.pipeworx.io/coinbase-exchange/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"product_stats","arguments":{"product_id":"BTC-USD"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('product_stats', {
  "product_id": "BTC-USD"
});

Response shape

FieldTypeDescription
openstring24h opening price
highstring24h high price
lowstring24h low price
volumestring24h volume
laststringLast trade price
volume_30daystring30-day volume
Full JSON Schema
{
  "type": "object",
  "properties": {
    "open": {
      "type": "string",
      "description": "24h opening price"
    },
    "high": {
      "type": "string",
      "description": "24h high price"
    },
    "low": {
      "type": "string",
      "description": "24h low price"
    },
    "volume": {
      "type": "string",
      "description": "24h volume"
    },
    "last": {
      "type": "string",
      "description": "Last trade price"
    },
    "volume_30day": {
      "type": "string",
      "description": "30-day volume"
    }
  },
  "description": "24-hour statistics"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "coinbase-exchange": {
      "url": "https://gateway.pipeworx.io/coinbase-exchange/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 8, 2026