histo_minute

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

Minute OHLC.

Parameters

NameTypeRequiredDescription
fsymstringyes
tsymstringyes
limitnumberno
aggregatenumberno
toTsnumberno
estringno

Example call

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

Response shape

FieldTypeDescription
ResponsestringResponse status
TypestringData type
AggregatedbooleanWhether data is aggregated
DataarrayArray of OHLC candles
TimeFromnumberStart timestamp of data
TimeTonumberEnd timestamp of data
Full JSON Schema
{
  "type": "object",
  "description": "Minute OHLC candlestick data",
  "properties": {
    "Response": {
      "type": "string",
      "description": "Response status"
    },
    "Type": {
      "type": "string",
      "description": "Data type"
    },
    "Aggregated": {
      "type": "boolean",
      "description": "Whether data is aggregated"
    },
    "Data": {
      "type": "array",
      "description": "Array of OHLC candles",
      "items": {
        "type": "object",
        "properties": {
          "time": {
            "type": "number",
            "description": "Unix timestamp"
          },
          "open": {
            "type": "number",
            "description": "Opening price"
          },
          "high": {
            "type": "number",
            "description": "Highest price"
          },
          "low": {
            "type": "number",
            "description": "Lowest price"
          },
          "close": {
            "type": "number",
            "description": "Closing price"
          },
          "volumefrom": {
            "type": "number",
            "description": "Volume in base coin"
          },
          "volumeto": {
            "type": "number",
            "description": "Volume in target coin"
          }
        }
      }
    },
    "TimeFrom": {
      "type": "number",
      "description": "Start timestamp of data"
    },
    "TimeTo": {
      "type": "number",
      "description": "End timestamp of data"
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026