Combined Liquity snapshot (collateral + assets + best pool)
API · /liquity-api
Liquity Protocol API
Live protocol metrics for Liquity, the original immutable decentralized borrowing protocol that issues the LUSD and BOLD stablecoins against ETH and liquid-staking-token collateral, keyless. Get the total collateral locked, the breakdown of which assets back the stablecoins (ETH, wstETH, rETH across Liquity v1 + v2), per-chain TVL, and the Liquity pools (stability pools / earning positions) with their APY. One combined overview endpoint snapshots it all. Live, nothing stored. The CDP / decentralized-stablecoin metrics layer for DeFi dashboards, stablecoin, risk and yield apps — distinct from DEX, lending, restaking and yield protocols, this is Liquity collateralized-debt model specifically.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 419 ms
- Server probes · 24h
- Subscribers
- 3,262
- active
- Total calls
- 20
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 2,300 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 2,300 calls/month
- 3 req/sec
- Collateral · pools · TVL
- No credit card
Starter
€14.00 /month
- 58,000 calls / month
- 8 requests / second
- Hard cap (429 above quota, no overage)
- 58k calls/month
- 8 req/sec
- All endpoints
- Email support
Pro
€47.00 /month
- 360,000 calls / month
- 20 requests / second
- Hard cap (429 above quota, no overage)
- 360k calls/month
- 20 req/sec
- Collateral & stability-pool analytics
- Priority support
Business
€144.00 /month
- 2,400,000 calls / month
- 50 requests / second
- Hard cap (429 above quota, no overage)
- 2.4M calls/month
- 50 req/sec
- Commercial use
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Nolus Chain API
Real-time on-chain data for Nolus (chain-id pirin-1), a Cosmos-SDK Layer-1 running a DeFi-lease / money-market protocol, secured by delegated proof-of-stake with NLS as its native coin. The status endpoint returns the chain id, latest block height and time, proposer and node application version so you can confirm the chain is live and producing blocks. The validators endpoint returns the full bonded validator set — each moniker, operator address, stake in NLS, commission rate and jailed flag — sorted by stake, plus the total bonded and not-bonded NLS. The supply endpoint returns the total NLS supply (in NLS and base unls), the bonded amount and the bonded ratio. The governance endpoint returns the most recent on-chain governance proposals with title, status and voting window. The meta endpoint documents the chain, denom and decimals. Reads a live Nolus Cosmos-SDK LCD node directly (with mirror fallback), so values are current to the latest block. Live, nothing stored. 5 endpoints. This serves chain-level staking, supply and governance data; for individual lease positions or token prices use a dedicated protocol/market API.
api.oanor.com/nolus-api
Nibiru Chain API
Real-time on-chain data for Nibiru (chain-id cataclysm-1), a Cosmos-SDK Layer-1 for DeFi with a native EVM, secured by delegated proof-of-stake with NIBI as its native coin. The status endpoint returns the chain id, latest block height and time, proposer and node application version so you can confirm the chain is live and producing blocks. The validators endpoint returns the full bonded validator set — each moniker, operator address, stake in NIBI, commission rate and jailed flag — sorted by stake, plus the total bonded and not-bonded NIBI. The supply endpoint returns the total NIBI supply (in NIBI and base unibi), the bonded amount and the bonded ratio. The governance endpoint returns the most recent on-chain governance proposals with title, status and voting window. The meta endpoint documents the chain, denom and decimals. Reads a live Nibiru Cosmos-SDK LCD node directly (with mirror fallback), so values are current to the latest block. Live, nothing stored. 5 endpoints. This serves chain-level staking, supply and governance data; for token prices or smart-contract reads use a dedicated market/contract API.
api.oanor.com/nibiru-api
Canto Chain API
Real-time on-chain data for Canto (chain-id 7700), a permissionless, public-good EVM-compatible Layer-1 built on the Cosmos SDK with Ethermint and focused on free public DeFi infrastructure with CANTO as its native coin. The status endpoint returns the chain id, network id, latest block height, native symbol and node client version so you can confirm the chain is live and synced. The block endpoint returns a block by decimal or 0x-hex height — or the latest block when no height is given — with its hash, parent hash, timestamp (raw and ISO), transaction count, gas used and limit, base fee and miner. The gas endpoint returns the current gas price in both wei and gwei at the latest block. The balance endpoint returns the native CANTO balance (in wei and human-readable units) and the transaction count (nonce) for any 0x address. The meta endpoint documents the chain id, decimals and ecosystem. Reads a live Canto JSON-RPC node directly, so values are current to the latest block. Live, nothing stored. 5 endpoints. This serves native-coin and chain data; for ERC-20 token balances or contract calls use a dedicated token/contract API.
api.oanor.com/canto-api
Elys Network API
Live on-chain data for Elys Network (chain-id elys-1), a Cosmos-SDK DeFi Layer 1 built around an on-chain AMM, perpetual futures and leveraged liquidity provision, with the ELYS token. Read the current chain status — latest block height, block time and chain id — list the active validator set with each validator moniker, staked ELYS, commission and jailed status, inspect the staking pool with bonded and not-bonded amounts and the bonded ratio, read the total ELYS supply, and explore the full multi-asset on-chain supply — the bank module holds ELYS alongside dozens of bridged IBC assets and AMM liquidity-pool shares — plus the latest on-chain governance proposals with their status and voting windows. All ELYS amounts are returned both in base units (uelys) and as whole ELYS. Distinct from other Cosmos-chain APIs on the marketplace: this surfaces the Elys Network DeFi chain specifically.
api.oanor.com/elys-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Liquity Protocol API?
What's the rate limit for Liquity Protocol API?
How much does Liquity Protocol API cost?
Can I cancel my subscription anytime?
Is Liquity Protocol 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/liquity-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/liquity-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/liquity-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/liquity-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.