ticker_hour

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

Last-hour 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_hour","arguments":{}}}'

Response shape

FieldTypeDescription
laststringLast traded price
highstringHighest price in last hour
lowstringLowest price in last hour
vwapstringVolume weighted average price
volumestringTrading volume in last hour
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 last hour"
    },
    "low": {
      "type": "string",
      "description": "Lowest price in last hour"
    },
    "vwap": {
      "type": "string",
      "description": "Volume weighted average price"
    },
    "volume": {
      "type": "string",
      "description": "Trading volume in last hour"
    },
    "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