Recommended fee rates (litoshi/vB) and the current mempool size
API · /litecoinfees-api
Litecoin Fees, Difficulty & Mining API
Litecoin's fee market, difficulty cycle and mining-pool distribution, live from the public Litecoin Space API (a mempool.space instance) — no key, nothing cached. The existing Litecoin reader covers addresses, transactions and blocks; this opens the network-economics layer it does not. Read the recommended fee rates in litoshi per virtual byte — from next-block down to economy and the relay minimum — together with the live mempool backlog. Read the difficulty adjustment: how far through the current 2016-block retarget window the chain is, the projected difficulty change, the estimated retarget date and the blocks remaining. And read the mining-pool distribution over the last week — which pools are finding Litecoin blocks, how many, their share and the network's estimated hashrate (Litecoin is mined with Scrypt, often merge-mined with Dogecoin). The fee-and-mining layer for Litecoin wallets, miners, fee estimators and analytics. Live from litecoinspace.org.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 110 ms
- Server probes · 24h
- Subscribers
- 3,520
- active
- Total calls
- 48
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 7,150 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 7.15k calls/month
- 3 req/sec
- All endpoints
- No credit card
Starter
€9.40 /month
- 135,500 calls / month
- 9 requests / second
- Hard cap (429 above quota, no overage)
- 135.5k calls/month
- 9 req/sec
- Email support
Pro
€32.70 /month
- 788,000 calls / month
- 22 requests / second
- Hard cap (429 above quota, no overage)
- 788k calls/month
- 22 req/sec
- Priority support
Business
€87.50 /month
- 5,120,000 calls / month
- 55 requests / second
- Hard cap (429 above quota, no overage)
- 5.12M calls/month
- 55 req/sec
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Litecoin API
Live on-chain data from the Litecoin network (LTC), the long-running silver-to-Bitcoin's-gold proof-of-work UTXO chain with 2.5-minute blocks and Scrypt mining, via the public litecoinspace.org explorer. Like Bitcoin, Litecoin is UTXO-based. Resolve any address's confirmed LTC balance, the total it has ever received and sent, its transaction count and any unconfirmed mempool balance. Look up a transaction's fee, size, input and output counts, total output value and confirmation status. Read a block's height, hash, timestamp, transaction count, size and difficulty. Get the live chain state — the tip height, the recommended fee rates, the mempool size and fees, and the next difficulty adjustment. Live, no key, nothing stored. Distinct from the Bitcoin, Kaspa, XRP Ledger, Cardano, Hedera, Cosmos, Sui, NEAR, MultiversX, Starknet, Solana and EVM on-chain APIs and from price feeds — this is Litecoin's UTXO address state, transactions, blocks and fees. Perfect for wallets, explorers and payments apps.
api.oanor.com/litecoin-api
Blockchair Multi-Chain Stats API
Live on-chain network statistics, mempool conditions and market data across the major UTXO blockchains and Ethereum, sourced from Blockchair. For any supported chain read the full network state — best block height, total and 24-hour block and transaction counts, mining difficulty, hashrate, coin circulation, on-chain transfer volume and chain size — or zoom into the mempool to see pending transactions, mempool size, transactions-per-second, the suggested fee per byte (or median gas price on Ethereum) and average and median transaction fees in native units and USD, or pull market data with the coin price in USD and BTC, 24-hour change, market capitalisation and dominance. Ten chains are covered: Bitcoin, Bitcoin Cash, Litecoin, Dogecoin, Dash, Zcash, Bitcoin SV, eCash, Groestlcoin and Ethereum. Distinct from single-chain mempool and gas feeds: this is one consistent multi-chain stats surface.
api.oanor.com/blockchair-api
DeFi Fees & Revenue API
Live data on the fees users pay to DeFi protocols and the revenue those protocols actually keep — the "which protocols earn money" view, a different layer from Total Value Locked. TVL is what is deposited; fees are what users pay to use a protocol; revenue is the slice the protocol or its token-holders retain. Powered by the public DeFiLlama fees feed, no key, nothing stored. The overview endpoint returns the whole-DeFi fee (or revenue) total for the last 24 hours, 7 days and 30 days plus every protocol ranked by what it earns, with its category and chains. The protocol endpoint returns a single protocol's fee and revenue figures side by side across 24h / 7d / 30d / all-time (e.g. Aave, Uniswap, Lido). The chain endpoint returns the fee or revenue total and top-earning protocols for one blockchain (Ethereum, Solana, Base). Switch any list between gross fees and retained revenue with a single metric parameter. This is the fees-and-revenue cut of DeFi — distinct from the TVL, DEX-volume, exchange-ticker and coin-markets APIs in the catalogue.
api.oanor.com/defifees-api
Crypto Fees API
Live crypto protocol fee and revenue data across the whole ecosystem as an API, streamed from the DefiLlama fees feed. For thousands of protocols and chains: the fees paid by users over the last 24 hours, 7 days and 30 days, the all-time total, and the day/week/month change. Rank the protocols actually earning the most — a fundamental "who makes money" view of crypto — drill into any single protocol, read the market-wide fee total, or search. Built for crypto, fundamental-analysis and dashboard apps. Live, no key. Distinct from TVL, yield, stablecoin-supply and price APIs — this is the fee and revenue surface.
api.oanor.com/cryptofees-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Litecoin Fees, Difficulty & Mining API?
What's the rate limit for Litecoin Fees, Difficulty & Mining API?
How much does Litecoin Fees, Difficulty & Mining API cost?
Can I cancel my subscription anytime?
Is Litecoin Fees, Difficulty & Mining API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/litecoinfees-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/litecoinfees-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/litecoinfees-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/litecoinfees-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.