---
name: www.bitcoind.app
description: www.bitcoind.app exposes Bitcoin Core RPC methods via an HTTP API. Currently, the available skill covers discovery of those RPC methods — returning their names, categories, summaries, parameter counts, and documentation URLs — rather than invoking them directly.
host: www.bitcoind.app
---

# www.bitcoind.app

BitcoinD.app is an API layer over Bitcoin Core RPC. It serves agents and developers that need programmatic access to Bitcoin Core functionality. The single currently-exposed skill is a method-discovery endpoint, useful for introspection before targeting a specific RPC call.

## When to use this host

Use this host when an agent needs to discover which Bitcoin Core RPC methods are exposed by the BitcoinD API before deciding which specific endpoint to call. It is not suitable for actually executing Bitcoin RPC calls or retrieving live blockchain data such as block info, transaction details, or wallet balances — for those operations, use the specific BitcoinD method endpoints directly (not yet represented as skills here) or a full Bitcoin node RPC client. Do not use this host if you already know which RPC method you need and simply want to invoke it.

## Capabilities

### RPC Method Discovery

Allows an agent to enumerate all Bitcoin Core RPC methods available on the BitcoinD API, including metadata such as category, summary, parameter count, and a documentation link for each method.

- **`fetch-bitcoind-methods`** — Returns a list of all available Bitcoin Core RPC methods exposed by the BitcoinD API, including name, category, summary, parameter count, and documentation URL for each method.

## Skill reference

### `fetch-bitcoind-methods`

**BitcoinD Methods** — Returns a list of all available Bitcoin Core RPC methods exposed by the BitcoinD API, including name, category, summary, parameter count, and documentation URL for each method.

*Use when:* Use when an agent needs to discover which Bitcoin Core RPC methods are available on the BitcoinD API, inspect their categories and summaries, or retrieve documentation links before calling a specific method.

*Not for:* Do not use to actually invoke a Bitcoin RPC method or retrieve blockchain data; use the specific BitcoinD method endpoints instead.

**Returns:** Returns a JSON object with a methods array; each element contains name, category, summary, param_count, and docs_url for every available Bitcoin Core RPC method.

**Example:** `GET https://www.bitcoind.app/api/v1/methods`

---
