PEPEW Light Service Gateway

PEPEW Light

ElectrumX-backed API gateway and dashboard for the PEPEPOW network. Use PEPEW Light to check addresses, transactions, payment status, market price, and network connectivity.

API Gateway:Online
ElectrumX Connection: Connected
Network Height:4852117
Last Checked:Status temporarily unavailable.

Address Lookup

Query any PEPEPOW address to view balances, scripthash data, and transaction history.

Transaction Lookup

Search a transaction by txid to inspect raw data, blocks, and confirmation status.

Payment Monitor

Check payment receiving status of any address with confirmed and mempool balance data.

PEPEW Light Wallet

Open the client-side non-custodial web wallet.

Gateway Safety Boundary

Security Notice: PEPEW Light Wallet is non-custodial. Wallet secrets stay in the browser. The public API handles address, txid, status, payment-check, and market-price queries.

Read-Only API

Address, transaction, wallet, status, and price endpoints are public read-only queries.

No Custody

The gateway does not operate as a hosted wallet or invoice ledger.

Private Node Access

ElectrumX remains behind the API gateway and is not directly exposed.

Public API Documentation

Developers can query the API using the following REST endpoints:

GET/api/price
Cached PEPEW/USDT market price

Purpose

Returns cached public PEPEW/USDT market price data from NonKYC. Price data is informational only and may be delayed or temporarily unavailable.

Example request

curl -s https://light.pepepow.net/api/price

Core fields

FieldTypeDescription
statusstringok, stale, or unavailable.
price_usdtstring|nullLatest PEPEW/USDT price if available.
sourcestringNonKYC.
cachedbooleanTrue when served from cache.
last_updatedstring|nullUTC timestamp for the cached price payload.
GET/api/health
Gateway heartbeat

Example request

curl -s https://light.pepepow.net/api/health
GET/api/status
ElectrumX node state and sync height

Example request

curl -s https://light.pepepow.net/api/status
GET/api/address/{address}
Address balance and metadata

Example request

curl -s https://light.pepepow.net/api/address/PRfbEeHAKKbz6Voz85WJudrJwTA3ZbHunb
GET/api/address/{address}/history
Paginated history lookup

Example request

curl -s "https://light.pepepow.net/api/address/PRfbEeHAKKbz6Voz85WJudrJwTA3ZbHunb/history?limit=5&offset=0"
GET/api/tx/{txid}
Transaction lookup

Example request

curl -s https://light.pepepow.net/api/tx/453c4f723b2eb5cf4b8ef9818fac50d08ddc8ed05bc972ee464f2dbc55b6a3db
GET/api/payment/check
Address-level payment verifier

Example request

curl -s "https://light.pepepow.net/api/payment/check?address=PRfbEeHAKKbz6Voz85WJudrJwTA3ZbHunb&amount=1"
GET/api/wallet/address/{address}
Wallet address summary

Example request

curl -s https://light.pepepow.net/api/wallet/address/PRfbEeHAKKbz6Voz85WJudrJwTA3ZbHunb
GET/api/wallet/history/{address}
Wallet transaction history

Example request

curl -s https://light.pepepow.net/api/wallet/history/PRfbEeHAKKbz6Voz85WJudrJwTA3ZbHunb
GET/api/wallet/utxo/{address}
Wallet address UTXOs

Example request

curl -s https://light.pepepow.net/api/wallet/utxo/PRfbEeHAKKbz6Voz85WJudrJwTA3ZbHunb