GET/api/v1/methods/{name}FREE
Look up a single RPC method by name. Returns parameters, return schema, and code examples in curl, Python, and JavaScript.
Example
curl https://bitcoind.app/api/v1/methods/getblockcount
Response
{
"method": {
"name": "getblockcount",
"category": "Blockchain",
"summary": "Returns the height of the most-work fully-validated chain.",
"params": [],
"result": { "type": "number", "description": "The current block count" },
"examples": { "curl": "...", "python": "...", "javascript": "..." },
"docs_url": "https://bitcoind.app/getblockcount"
},
"meta": { "count": 1, "tier": "free", "api_version": "v1" }
}GET/api/v1/categoriesFREE
List all RPC method categories with counts. Useful for building faceted navigation.
Example
curl https://bitcoind.app/api/v1/categories
GET/api/v1/methodsx402 · $0.001
Bulk list of all 142 method summaries. Replaces 142 individual lookups with one call.
Example
curl https://bitcoind.app/api/v1/methods \
-H "PAYMENT-SIGNATURE: <x402-signed-payload>"
GET/api/v1/methods/searchx402 · $0.001
Filter methods by category, text query, or parameter name. Pass examples=true to include code snippets.
Example
curl "https://bitcoind.app/api/v1/methods/search?category=Wallet&q=send" \
-H "PAYMENT-SIGNATURE: <x402-signed-payload>"
GET/api/v1/dumpx402 · $0.01
Complete structured dump of every method with full parameters, return schema, and code examples. One call gets everything.
Example
curl https://bitcoind.app/api/v1/dump \
-H "PAYMENT-SIGNATURE: <x402-signed-payload>"