API · /lava-api

Lava DePIN RPC-Marketplace On-Chain API

healthy 3,679 Subscribers

Live on-chain data from Lava (lava-mainnet-1), the Cosmos-SDK layer-1 running the decentralized RPC / data-provider marketplace. Read every blockchain "spec" supported by the marketplace (chain id, name, enabled API interfaces, api count); the RPC providers staked to serve a given chain (moniker, address, stake, delegations, commission, geolocation, endpoint count, jail status); the current pairing epoch; plus the staking pool with bonded ratio and validator set, the total LAVA supply and the latest block. The Lava / DePIN / RPC-provider-marketplace layer for explorers, provider dashboards and infrastructure tooling.

api.oanor.com/lava-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/lava-api/openapi.json
/api/lava-api/llms.txt

Discovery: GET /api/index.json lists every API.

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
137 ms
Server probes · 24h
Subscribers
3,679
active
Total calls
16
last 7 days
status Full status page → · 24 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 3,200 calls / month
  • 2 requests / second
  • Hard cap (429 above quota, no overage)
  • 3,200 calls/month
  • 2 req/sec
  • All endpoints
  • No credit card
Sign in to subscribe

Basic

€16.10 /month

  • 72,000 calls / month
  • 5 requests / second
  • Hard cap (429 above quota, no overage)
  • 72k calls/month
  • 5 req/sec
  • Email support
Sign in to subscribe

Pro

€44.70 /month

  • 270,000 calls / month
  • 15 requests / second
  • Hard cap (429 above quota, no overage)
  • 270k calls/month
  • 15 req/sec
  • Priority support
Sign in to subscribe

Business

€95.90 /month

  • 980,000 calls / month
  • 40 requests / second
  • Hard cap (429 above quota, no overage)
  • 980k calls/month
  • 40 req/sec
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Akash Network On-Chain API

Live on-chain data for Akash Network (the decentralized cloud-compute marketplace L1, chain akashnet-2) with no key: staking economics (bonded vs unbonded AKT, bonded ratio, staking parameters), the active validator set (moniker, voting power, commission, status), the total AKT supply, monetary inflation (annual rate, annual provisions, mint parameters), the latest governance proposals, and the latest block.

api.oanor.com/akash-api

Moonriver API

Real-time on-chain data for Moonriver (chain-id 1285) — the Ethereum-compatible companion network to Moonbeam, deployed on Kusama, with MOVR as its native token. Query live network status (latest block height, network id, client version), fetch any block by height or the latest one (timestamp, transaction count, gas used / limit, base fee, miner), read the current gas price in wei and gwei, and look up the native MOVR balance and transaction count of any address. A keyless, no-account JSON wrapper over the canonical Moonriver JSON-RPC node — decoded from hex into plain decimals and human-readable MOVR so you do not have to. Ideal for explorers, wallets, dashboards, gas estimators and analytics on Moonriver.

api.oanor.com/moonriver-api

Moonbeam API

Real-time on-chain data for Moonbeam (chain-id 1284) — the Ethereum-compatible smart-contract parachain on Polkadot, fully EVM-compatible with GLMR as its native token. Query live network status (latest block height, network id, client version), fetch any block by height or the latest one (timestamp, transaction count, gas used / limit, base fee, miner), read the current gas price in wei and gwei, and look up the native GLMR balance and transaction count of any address. A keyless, no-account JSON wrapper over the canonical Moonbeam JSON-RPC node — decoded from hex into plain decimals and human-readable GLMR so you do not have to. Ideal for explorers, wallets, dashboards, gas estimators and analytics on Moonbeam.

api.oanor.com/moonbeam-api

Gravity API

Real-time on-chain data for Gravity (Gravity Alpha Mainnet, chain-id 1625) — the high-performance chain by Galxe built on the Arbitrum Nitro stack, using G as its native gas token. Query live network status (latest block height, network id, client version), fetch any block by height or the latest one (timestamp, transaction count, gas used / limit, base fee, miner), read the current gas price in wei and gwei, and look up the native G balance and transaction count of any address. A keyless, no-account JSON wrapper over the canonical Gravity JSON-RPC node — decoded from hex into plain decimals and human-readable G so you do not have to. Ideal for explorers, wallets, dashboards, gas estimators and analytics on the Gravity chain.

api.oanor.com/gravity-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Lava DePIN RPC-Marketplace On-Chain API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Lava DePIN RPC-Marketplace On-Chain API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Lava DePIN RPC-Marketplace On-Chain API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does Lava DePIN RPC-Marketplace On-Chain API cost?
Lava DePIN RPC-Marketplace On-Chain API has a free tier with 100 calls / month. Paid plans start at €16.10 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is Lava DePIN RPC-Marketplace On-Chain API GDPR-compliant?
All requests to Lava DePIN RPC-Marketplace On-Chain API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

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/lava-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/lava-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/lava-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/lava-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 in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 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 in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.