A wallet SOL balance
API · /solana-api
Solana API
Live Solana blockchain data, read straight from a public Solana RPC node — no key, nothing cached. Where EVM chains use 0x addresses, Solana uses base58 keys, and this reads them directly. The balance endpoint returns any wallet's SOL balance (in lamports and SOL) along with the account's program owner, whether it is executable and its rent epoch. The network endpoint returns the live state of the chain: the current epoch and how far through it the cluster is, the absolute slot and block height, the running transactions-per-second, the cumulative transaction count and the node health — Solana runs at thousands of transactions per second. The transactions endpoint returns a wallet's most recent transaction signatures with the slot, block time, success or failure and an explorer link. It reads Solana mainnet live. This is the account-and-network layer every Solana wallet, explorer, dashboard or dapp needs. Live from the chain, nothing stored. Distinct from EVM balance, token and transaction APIs — this is Solana on-chain data. 4 endpoints.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 154 ms
- Server probes · 24h
- Subscribers
- 4,733
- active
- Total calls
- 16
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 10,000 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 10,000 calls/month
- 3 req/sec
- Balance, network state & transactions
- No credit card
Starter
€9.50 /month
- 122,000 calls / month
- 8 requests / second
- Hard cap (429 above quota, no overage)
- 122,000 calls/month
- 8 req/sec
- Lamports/SOL, owner, epoch, TPS
- Email support
Pro
€24.00 /month
- 605,000 calls / month
- 15 requests / second
- Hard cap (429 above quota, no overage)
- 605,000 calls/month
- 15 req/sec
- Wallet, explorer & dapp pipelines
- Priority support
Scale
€57.00 /month
- 3,020,000 calls / month
- 30 requests / second
- Hard cap (429 above quota, no overage)
- 3,020,000 calls/month
- 30 req/sec
- Solana-infra scale
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Kamino API
Live data from Kamino Finance, the largest lending and automated-liquidity protocol on Solana. Kamino's lending market lets users supply and borrow SOL, stablecoins and major SPL tokens, while its automated vaults run concentrated-liquidity strategies on Solana DEXs. The reserves endpoint returns every lending reserve on the main market — supply and borrow APY, total supplied and borrowed (USD), utilization and max LTV. The reserve endpoint returns one asset by symbol. The overview endpoint returns the protocol's aggregate supplied, borrowed and TVL. The vaults endpoint returns the top automated liquidity vaults by TVL with their token pair and APY. Read live from Kamino, nothing stored. This is Kamino's own Solana lending and liquidity-vault layer — distinct from Ethereum lending (Morpho), liquid staking and DEX/price feeds.
api.oanor.com/kamino-api
Raydium API
Live data from Raydium, the largest automated-market-maker DEX on Solana, whose standard (AMM) and concentrated-liquidity (CLMM) pools route most of Solana's on-chain swap volume. The overview endpoint returns the protocol's total value locked and 24h volume. The pools endpoint returns the top pools by liquidity, volume, APR or fees — each with its pair, type, price, TVL, 24h volume, fee APR and fee rate. The pool endpoint returns one pool's full state by id, including weekly and monthly volume and the CLMM price range. The price endpoint returns the live USD price of one or more SPL tokens by mint address, with symbol shortcuts for SOL, RAY, USDC and more. Read live from Raydium, nothing stored. This is Raydium's own Solana AMM/CLMM pool, TVL/volume/APR and token-pricing layer — distinct from Ethereum AMM feeds (Balancer, Curve), order-book/perps DEX feeds and swap aggregators.
api.oanor.com/raydium-api
Marinade API
Live data from Marinade, Solana's largest liquid-staking protocol, where users stake SOL and hold mSOL (a reward-accruing token) or use Marinade Native. The overview endpoint returns the headline state — the mSOL/SOL price, the 30d and 7d staking APY, and the total value locked. The tvl endpoint returns the full TVL breakdown (staked SOL/USD, liquidity, directed, native, self and select stake). The apy endpoint returns the mSOL staking APY over 30d and 7d with the underlying price evolution. The validators endpoint returns Marinade's delegation validator set ranked by stake — each with its name, vote account, data-centre location, commission, activated stake, average APY and uptime. Read live from Marinade, nothing stored. This is Marinade's own Solana liquid-staking, mSOL-yield, TVL and validator layer — distinct from Ethereum staking feeds, on-chain explorers and DEX/price APIs.
api.oanor.com/marinade-api
Jupiter Solana DEX Aggregator API
Live data from Jupiter — the leading DEX aggregator on Solana — served from its public API as clean JSON, no cache. Get the live USD price, on-chain liquidity and 24h price change for any Solana token mint (one or many at once); get the best swap route Jupiter finds between two token mints for a given input amount — the output amount, price impact and number of routing hops, the heart of the aggregator; or search Solana tokens by symbol, name or mint and get the top match's price, liquidity, market cap, decimals and holder count. Read live from Jupiter, nothing cached. This is Jupiter's own Solana swap-routing, token-price and token-search layer — distinct from EVM on-chain explorers, other DEX/DeFi feeds and generic price APIs: the live routing and pricing engine of Solana's biggest swap aggregator.
api.oanor.com/jupiter-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Solana API?
What's the rate limit for Solana API?
How much does Solana API cost?
Can I cancel my subscription anytime?
Is Solana 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/solana-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/solana-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/solana-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/solana-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.