tx_status

Pack: blockstream-info · Endpoint: https://gateway.pipeworx.io/blockstream-info/mcp

Confirmation status for a txid (block_height, block_hash, confirmed).

Parameters

NameTypeRequiredDescription
txidstringyes
networkstringno

Example call

Arguments

{
  "txid": "1e3e4c4688992486ff5e3d4dd47e8f5f8d8f6f8f8f8f8f8f8f8f8f8f8f8f8f8f"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('tx_status', {
  "txid": "1e3e4c4688992486ff5e3d4dd47e8f5f8d8f6f8f8f8f8f8f8f8f8f8f8f8f8f8f"
});

Response shape

Always returns: confirmed

FieldTypeDescription
confirmedbooleanIs transaction confirmed
block_heightnumberBlock height if confirmed
block_hashstringBlock hash if confirmed
block_timenumberBlock time if confirmed
Full JSON Schema
{
  "type": "object",
  "properties": {
    "confirmed": {
      "type": "boolean",
      "description": "Is transaction confirmed"
    },
    "block_height": {
      "type": "number",
      "description": "Block height if confirmed"
    },
    "block_hash": {
      "type": "string",
      "description": "Block hash if confirmed"
    },
    "block_time": {
      "type": "number",
      "description": "Block time if confirmed"
    }
  },
  "required": [
    "confirmed"
  ]
}

Connect

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

{
  "mcpServers": {
    "blockstream-info": {
      "url": "https://gateway.pipeworx.io/blockstream-info/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026