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
| Endpoint | Purpose |
|---|
| GET /v1/public/coins/LC2/network | network snapshot + peers + hashrate history |
| GET /v1/public/coins/LC2/blocks | recent blocks with miner/risk tags |
| GET /v1/public/coins/LC2/txs | recent transactions list |
| GET /v1/public/coins/LC2/mempool | live mempool tx snapshot (sort/offset/limit) |
| GET /v1/public/coins/LC2/txs/:txid/io | transaction 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
| Endpoint | Purpose |
|---|
| GET /v1/ws/alerts | websocket snapshot stream for active findings/events |
| GET /v1/private/ws/alerts | same 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'