getconnectioncount

Gives back how many connections are to other nodes.

Example Request and Result for getconnectioncount method

In this section, we provide an illustrative example of a request made to retrieve details contents using the getconnectioncount method. Additionally, we present the resulting response containing information about the connections to other nodes.

Parameters

  • none

The example in this section uses a non-existing project id.

Make sure you replace it with your Bitcoin mainnet or Bitcoin Testnet endpoint when issuing the API calls.

Don't have a project id? Here's a straightforward guide on how to obtain one!

Gives back how many connections are to other nodes.

POST https://bitcoin-mainnet.blastapi.io/<project-id>

Request Body

{
    "result": 10,
    "error": null,
    "id": "bwarelabs"
}

Curl Request example

curl --location 'https://bitcoin-mainnet.blastapi.io/<project-id>' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "1.0",
    "id": "bwarelabs",
    "method": "getconnectioncount",
    "params": []
}'

Last updated