get_bans - Monero

Example code for the get_bans JSON-RPC method. Complete guide on how to use get_bans JSON-RPC in GetBlock Web3 documentation.

This method returns the list of currently banned IP addresses on the node, along with the remaining time for each ban.

Parameters

  • None

Request Example

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "get_bans",
    "params": {},
    "id": "getblock.io"
}'

Response Example

{
    "id": "getblock.io",
    "jsonrpc": "2.0",
    "result": {
        "bans": [
            {
                "host": "192.0.2.1",
                "ip": 16777343,
                "seconds": 3600
            }
        ],
        "status": "OK"
    }
}

Response Parameters

Field
Type
Description

result.bans

array

List of active bans

result.bans[].host

string

Banned host (IP or hostname)

result.bans[].seconds

unsigned int

Seconds remaining on the ban

Use Cases

  • Reviewing ban state on a dedicated node

  • Detecting persistent bad-actor IPs

Error Handling

Status Code
Error Message
Cause

404

Not Found

Missing or invalid <ACCESS-TOKEN>

-32601

Method not found

Method does not exist or is not enabled on this node

429

Too Many Requests

Rate limit exceeded for your plan

Last updated

Was this helpful?