ForkSentinel Explorer
LC2

LitecoinII Explorer

Public and private integration endpoints for LC2.

API Base

Use this runtime base URL for all examples below.

https://fork-sentinel.xbinor.io

Public REST

EndpointPurpose
GET /v1/public/coins/LC2/networknetwork snapshot + peers + hashrate history
GET /v1/public/coins/LC2/blocksrecent blocks with miner/risk tags
GET /v1/public/coins/LC2/txsrecent transactions list
GET /v1/public/coins/LC2/mempoollive mempool tx snapshot (sort/offset/limit)
GET /v1/public/coins/LC2/txs/:txid/iotransaction inputs/outputs flow
GET /v1/public/coins/LC2/quorum?txid=...verify TX across active RPC nodes
GET /v1/public/coins/LC2/quorum?block_hash=...verify block hash across active RPC nodes

Events Stream

EndpointPurpose
GET /v1/ws/alertswebsocket snapshot stream for active findings/events
GET /v1/private/ws/alertssame stream, whitelist-only channel for trusted backends

Private namespace requires source IP in admin whitelist (`Security → Rate-Limit Whitelist`).

cURL Examples

# 1) Network snapshot
curl -s 'https://fork-sentinel.xbinor.io/v1/public/coins/LC2/network'

# 2) Quorum check for TX
curl -s 'https://fork-sentinel.xbinor.io/v1/public/coins/LC2/quorum?txid=<TXID>'

# 3) Quorum check for block hash
curl -s 'https://fork-sentinel.xbinor.io/v1/public/coins/LC2/quorum?block_hash=<BLOCK_HASH>'

# 4) Private alert assessment (whitelist IP only)
curl -s 'https://fork-sentinel.xbinor.io/v1/private/coins/LC2/alerts/assessment'

# 5) Private alert events (whitelist IP only)
curl -s 'https://fork-sentinel.xbinor.io/v1/private/coins/LC2/alerts/events?status=active&limit=200'