# chainquery Bitcoin Core RPC Help

> chainquery Bitcoin Core RPC Help is a paid API for AI agents from x402.chainquery.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a list of all available Bitcoin Core RPC commands or detailed help text for a specific command from chainquery's independent full node

## Facts

- Endpoint: GET https://x402.chainquery.com/v1/rpc/help
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainquery-bitcoin-core-rpc-help-892a97a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__Hh8MsgvlzxHTOu5Lhvw4

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability chainquery-bitcoin-core-rpc-help-892a97a4
```

Example prompt: Show me all available Bitcoin Core RPC commands from chainquery's full node, or give me the detailed help text for the 'getblock' command.

## When to prefer this

Use this endpoint when you need to discover what Bitcoin Core RPC commands are available on chainquery's node, or when you need documentation on a specific RPC command's parameters and return values before calling it. Prefer this over static documentation when you want to confirm what the live node actually supports.

## Known failure modes

- Unknown RPC method name returns an error result
- Payment of $0.005 USDC not provided causes HTTP 402 response
- Invalid JSON in params query parameter causes parse error
- Network timeout if full node is temporarily unavailable

## How this service works

chainquery Bitcoin RPC: pay-per-call Bitcoin Core over x402, no API key. List of available RPC commands, or detailed help for one, from chainquery's independent full node. Bitcoin Core help.

## Output

Returns either a newline-separated list of all available Bitcoin Core RPC command names (when called without params), or detailed usage documentation for a single command including parameter names, types, descriptions, and return value format.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "params": "[\"getblock\"]"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "params": {
       "type": "string",
       "description": "optional: JSON-encoded array of positional RPC params"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "description": "help result"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainquery-bitcoin-core-rpc-help-892a97a4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.chainquery.com](https://www.zero.xyz/host/x402.chainquery.com/llms.txt)
