ticker

Pack: bitstamp · Endpoint: https://gateway.pipeworx.io/bitstamp/mcp

Fetch current Bitstamp ticker for a currency pair (e.g. btcusd): last price, bid, ask, 24h high/low/volume/vwap, and open.

Parameters

NameTypeRequiredDescription
currency_pairstringyes

Example call

Arguments

{
  "currency_pair": "btcusd"
}

curl

curl -X POST https://gateway.pipeworx.io/bitstamp/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ticker","arguments":{"currency_pair":"btcusd"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "currency_pair": "ethusd"
}

Response shape

FieldTypeDescription
laststringLast traded price
highstringHighest price in 24h
lowstringLowest price in 24h
vwapstringVolume weighted average price
volumestringTrading volume in 24h
bidstringCurrent bid price
askstringCurrent ask price
timestampstringUnix timestamp
openstringOpening price
Full JSON Schema
{
  "type": "object",
  "properties": {
    "last": {
      "type": "string",
      "description": "Last traded price"
    },
    "high": {
      "type": "string",
      "description": "Highest price in 24h"
    },
    "low": {
      "type": "string",
      "description": "Lowest price in 24h"
    },
    "vwap": {
      "type": "string",
      "description": "Volume weighted average price"
    },
    "volume": {
      "type": "string",
      "description": "Trading volume in 24h"
    },
    "bid": {
      "type": "string",
      "description": "Current bid price"
    },
    "ask": {
      "type": "string",
      "description": "Current ask price"
    },
    "timestamp": {
      "type": "string",
      "description": "Unix timestamp"
    },
    "open": {
      "type": "string",
      "description": "Opening price"
    }
  }
}

Connect

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

{
  "mcpServers": {
    "bitstamp": {
      "url": "https://gateway.pipeworx.io/bitstamp/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026