v1.4 Production Live · 99.99% Global Uptime

LtcPricer API

The most comprehensive Litecoin blockchain data API. UTXO queries, MWEB telemetry, mempool streams, and more. Migrating from OKLink? Switch your base URL in 5 minutes.

Developer Infrastructure
Average Latency < 18ms
Mempool Zero-Conf Sub-second
Historical Depth Genesis (2011)
Privacy Protocol MWEB Full Decoding
Turnkey Migration Assistant

Migrating from OKLink?

OKLink deprecated their Litecoin API in May 2025. LtcPricer offers a compatible REST API. Simply replace your base URL:

// Before: OKLink (Sunset / Deprecated)
// Before: https://oklink.com/api/v1/ltc/...
// After: LtcPricer High-Throughput REST
// After: https://ltcpricer.com/api/v1/...
Zero payload changes required

Transparent, Developer-Friendly Pricing

Predictable tiers built for indie hackers, crypto hedge funds, payment gateways, and enterprise exchanges.

Free Tier
$0 / month

For testing, experiments, and open-source tools.

  • 3 req/s rate limit
  • 50,000 requests/mo
  • Basic UTXO queries
  • No MWEB or Webhooks
Developer
$49 / month

For production bots and portfolio trackers.

  • 10 req/s rate limit
  • 500,000 requests/mo
  • Webhooks (20 addresses)
  • Email support
MOST POPULAR
Pro Plan
$199 / month

Full privacy MWEB access & high volume.

  • 30 req/s rate limit
  • 3,000,000 requests/mo
  • MWEB Decoder & telemetry
  • 100 Webhook listeners
  • 99.9% SLA guarantee
Business
$499 / month

Real-time WebSocket mempool firehose.

  • 60 req/s rate limit
  • 10,000,000 requests/mo
  • WebSocket firehose stream
  • Unlimited webhooks
  • 99.95% SLA + priority support
Enterprise
$1,200+ / month

Exchanges, institutions, & high volume.

  • Dedicated nodes & RPC
  • Custom SLA (99.99%)
  • Private Slack / Telegram
  • Custom data pipelines

Quickstart Integration Example

Query live confirmed address balances in under 3 lines of code.

curl https://ltcpricer.com/api/v1/address/LTC_ADDRESS/balance

API Endpoint Reference

Interactive endpoint explorer for Litecoin REST, WebSockets, and MWEB privacy telemetry.

GET POST WSS DELETE PRO
Blocks (2 endpoints)
GET /api/v1/block/{hash_or_height}

Retrieve full block header, difficulty, transaction count, size, and Merkle root.

Public Tier
GET /api/v1/blocks/latest

Fetch the 10 most recent verified Litecoin blocks with miner metadata and fee revenue.

Public Tier
Transactions (2 endpoints)
GET /api/v1/tx/{txid}

Detailed transaction decoding including inputs, outputs, fee rate (sat/vB), and confirmations.

Public Tier
POST /api/v1/tx/broadcast

Push signed raw transaction hex directly into the Litecoin P2P peer node network.

Public Tier
Addresses (2 endpoints)
GET /api/v1/address/{address}/balance

Current confirmed and unconfirmed LTC balance, satoshi values, and transaction counts.

Public Tier
GET /api/v1/address/{address}/utxos

List all spendable unspent transaction outputs (UTXOs) with scriptPubKeys and block heights.

Public Tier
MWEB (MimbleWimble Extension Block) PRO
GET /api/v1/mweb/pool-stats PRO

Real-time MimbleWimble privacy pool telemetry, total pegged LTC, and kernel state counts.

Pro Tier+
GET /api/v1/mweb/peg-ins PRO

Recent transparent-to-MWEB peg-in operations with HogEx commitment validation proofs.

Pro Tier+
GET /api/v1/mweb/peg-outs PRO

Recent MWEB-to-transparent peg-out transactions and unwrapped recipient outputs.

Pro Tier+
Mempool & Streaming WSS · PRO
WSS /api/v1/stream/mempool PRO

Real-time zero-lag bidirectional WebSocket stream of pending unconfirmed transactions.

Business Tier+
GET /api/v1/mempool/stats PRO

Live mempool depth, sat/vByte fee histograms, and congestion velocity indicators.

Pro Tier+
Webhooks & Alerts PRO
POST /api/v1/webhooks/create PRO

Register HTTP POST callback URL for address deposit notifications or block confirmations.

Dev & Pro
DELETE /api/v1/webhooks/{id} PRO

Deregister and permanently delete an active webhook listener by unique identifier.

Dev & Pro

Official Client SDKs

Engineered for native performance with automatic retries, exponential backoff, and WebSocket reconnection.

SDK Roadmap Q3 2026
TypeScript / Node.js Coming Soon

@ltcpricer/sdk

Full TypeScript typing, WebSocket client with auto-reconnect, and native browser/Node.js bundle support.

npm install @ltcpricer/sdk
Python 3.10+ Coming Soon

ltcpricer-py

Asyncio & requests compatible client with Pydantic V2 models for trading bots and quant analysis.

pip install ltcpricer-py
Go (Golang) Coming Soon

ltcpricer-go

Goroutine-safe client with internal connection pooling, zero-alloc JSON parsing, and streaming channels.

go get github.com/ltcpricer/ltcpricer-go