product

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

Single product.

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","arguments":{"product_id":"BTC-USD"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "product_id": "ETH-USDC"
}

Response shape

FieldTypeDescription
idstringProduct ID
base_currencystringBase currency
quote_currencystringQuote currency
base_min_sizestringMinimum order size
base_max_sizestringMaximum order size
quote_incrementstringQuote increment
display_namestringDisplay name
statusstringProduct status
margin_enabledbooleanMargin trading enabled
post_onlybooleanPost-only orders
limit_onlybooleanLimit orders only
cancel_onlybooleanCancel only
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Product ID"
    },
    "base_currency": {
      "type": "string",
      "description": "Base currency"
    },
    "quote_currency": {
      "type": "string",
      "description": "Quote currency"
    },
    "base_min_size": {
      "type": "string",
      "description": "Minimum order size"
    },
    "base_max_size": {
      "type": "string",
      "description": "Maximum order size"
    },
    "quote_increment": {
      "type": "string",
      "description": "Quote increment"
    },
    "display_name": {
      "type": "string",
      "description": "Display name"
    },
    "status": {
      "type": "string",
      "description": "Product status"
    },
    "margin_enabled": {
      "type": "boolean",
      "description": "Margin trading enabled"
    },
    "post_only": {
      "type": "boolean",
      "description": "Post-only orders"
    },
    "limit_only": {
      "type": "boolean",
      "description": "Limit orders only"
    },
    "cancel_only": {
      "type": "boolean",
      "description": "Cancel only"
    }
  },
  "description": "Single product details"
}

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