currency

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

Single currency.

Parameters

NameTypeRequiredDescription
currency_idstringyes

Example call

Arguments

{
  "currency_id": "BTC"
}

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('currency', {
  "currency_id": "BTC"
});

More examples

{
  "currency_id": "USD"
}

Response shape

FieldTypeDescription
idstringCurrency ID
namestringCurrency name
min_sizestringMinimum withdrawal size
statusstringCurrency status
max_precisionstringMax decimal precision
convertible_toarrayConvertible currencies
detailsobjectAdditional currency details
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Currency ID"
    },
    "name": {
      "type": "string",
      "description": "Currency name"
    },
    "min_size": {
      "type": "string",
      "description": "Minimum withdrawal size"
    },
    "status": {
      "type": "string",
      "description": "Currency status"
    },
    "max_precision": {
      "type": "string",
      "description": "Max decimal precision"
    },
    "convertible_to": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Convertible currencies"
    },
    "details": {
      "type": "object",
      "description": "Additional currency details"
    }
  },
  "description": "Single currency 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