listbanned - Litecoin

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

List all banned IPs/Subnets.

Parameters

  • None

Request

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

Response

response.json
{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": [{
        "address": "1.2.3.4/32",
        "banned_until": 1640000000,
        "ban_created": 1639000000
    }]
}

Response Parameters

Field
Type
Description

address

string

The banned address/subnet.

banned_until

number

Time the ban expires.

ban_created

number

Time the ban was created.

Use Case

The listbanned method is essential for:

  • Security monitoring

  • Ban management

  • Peer filtering

  • Network protection

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid ACCESS-TOKEN.

Integration Notes

The listbanned method helps developers build robust applications that interact with the Litecoin blockchain.

Last updated

Was this helpful?