# chainquery Bitcoin Core getaddednodeinfo

> chainquery Bitcoin Core getaddednodeinfo 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 status information about manually added peer nodes from chainquery's independent Bitcoin full node via Bitcoin Core's getaddednodeinfo RPC.

## Facts

- Endpoint: GET https://x402.chainquery.com/v1/rpc/getaddednodeinfo
- 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-getaddednodeinfo-e934c604
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XQ387kf82CBsuJBWywLX9

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-getaddednodeinfo-e934c604
```

Example prompt: Can you fetch the status of all manually added peer nodes from chainquery's Bitcoin full node using getaddednodeinfo?

## When to prefer this

Use this endpoint when you need to check the connection status and details of manually added Bitcoin peer nodes without managing your own full node or API key, paying only per call via x402 protocol.

## Known failure modes

- Payment of $0.005 USDC not received — 402 Payment Required response
- Invalid or malformed JSON-encoded params array — RPC parse error
- Node temporarily unavailable — 503 or timeout
- Unsupported HTTP method used — schema requires GET/HEAD/DELETE only
- RPC method not available on this node version

## How this service works

chainquery Bitcoin RPC: pay-per-call Bitcoin Core over x402, no API key. Status of manually added peer nodes from chainquery's independent full node. Bitcoin Core getaddednodeinfo.

## Output

Returns the Bitcoin Core getaddednodeinfo result: a list of manually added peer nodes with their addresses, connection status, and sync information as reported by chainquery's independent Bitcoin full node.

## 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": "getaddednodeinfo result"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainquery-bitcoin-core-getaddednodeinfo-e934c604/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)
