ticker

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

Current ticker.

Parameters

NameTypeRequiredDescription
currency_pairstringyes

Example call

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":{}}}'

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 May 21, 2026