transaction
Pack: blockchair · Endpoint: https://gateway.pipeworx.io/blockchair/mcp
Transaction details by txid.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
chain | string | yes | |
txid | string | yes |
Example call
Arguments
{
"chain": "bitcoin",
"txid": "d7d3b0e3f0c9b8a7c6d5e4f3a2b1c0d9e8f7a6b5c4d3e2f1a0b9c8d7e6f5a4"
}
curl
curl -X POST https://gateway.pipeworx.io/blockchair/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"transaction","arguments":{"chain":"bitcoin","txid":"d7d3b0e3f0c9b8a7c6d5e4f3a2b1c0d9e8f7a6b5c4d3e2f1a0b9c8d7e6f5a4"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('transaction', {
"chain": "bitcoin",
"txid": "d7d3b0e3f0c9b8a7c6d5e4f3a2b1c0d9e8f7a6b5c4d3e2f1a0b9c8d7e6f5a4"
});
More examples
{
"chain": "ethereum",
"txid": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Transaction details including inputs, outputs, and confirmation status"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"blockchair": {
"url": "https://gateway.pipeworx.io/blockchair/mcp"
}
}
}
See Getting Started for client-specific install steps.