Complete list of all Bitcoin Core RPC methods (summaries)
Complete list of all Bitcoin Core RPC methods (summaries). One call replaces up to 142 individual lookups. Returns name, category, summary, and parameter count for every method.
1000 (raw units)
price
10
calls / 30d
8
unique payers
2026-09-17
updated
Provider
www.bitcoind.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3130cD1CAb59a15DC75931ecb006B6f8c0b4A3fa",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"meta": {
"count": 142,
"tier": "paid"
},
"methods": [
{
"category": "Blockchain",
"docs_url": "https://bitcoind.app/getblockchaininfo",
"name": "getblockchaininfo",
"param_count": 0,
"summary": "Returns an object containing various state info regarding blockchain processing."
}
]
},
"type": "json"
}
},
"routeTemplate": ":var1",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"type": "object"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"meta": {
"type": "object"
},
"methods": {
"items": {
"properties": {
"category": {
"description": "Method category (Blockchain, Wallet, etc)",
"type": "string"
},
"docs_url": {
"description": "Link to full human-readable docs",
"type": "string"
},
"name": {
"description": "RPC method name",
"type": "string"
},
"param_count": {
"description": "Number of parameters accepted",
"type": "number"
},
"summary": {
"description": "One-line description of what the method does",
"type": "string"
}
},
"required": [
"name",
"category",
"summary",
"docs_url"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"methods"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://www.bitcoind.app/api/v1/methods" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://www.bitcoind.app/api/v1/methods");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://www.bitcoind.app/api/v1/methods")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4876.json, and this resource appears in /discovery/resources and /discovery/search.