API · /nft-api

NFT Collections API

degraded 3,973 Subscribers

Live NFT collection market data — no key, nothing cached. For any collection it returns the numbers that matter: the floor price in both the chain's native currency and US dollars, the 24-hour floor change, the collection market cap, the 24-hour trading volume and its change, the number of unique owners and the total supply, plus the contract address, the chain and the project's links — Pudgy Penguins floors around 4.3 ETH with thousands of unique owners and a market cap in the tens of millions. The list endpoint pages through the collections that are tracked, and the search endpoint finds a collection by name. It spans every chain NFTs are indexed on — Ethereum, Solana, Polygon and more. This is the collection-floor-and-volume layer for any NFT marketplace, wallet, portfolio or analytics app. Live, served from the public CoinGecko feed, nothing stored. Distinct from token-price and single-chain APIs — this is NFT collection floor prices, market caps and volumes. 4 endpoints.

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

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

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

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

API health

degraded
Uptime
50.00%
Server probes · 24h
Avg latency
173 ms
Server probes · 24h
Subscribers
3,973
active
Total calls
20
last 7 days
status Full status page → · 12 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 10,800 calls / month
  • 3 requests / second
  • Hard cap (429 above quota, no overage)
  • 10,800 calls/month
  • 3 req/sec
  • Collection data, list & search
  • All indexed chains
Sign in to subscribe

Starter

€9.50 /month

  • 128,000 calls / month
  • 8 requests / second
  • Hard cap (429 above quota, no overage)
  • 128,000 calls/month
  • 8 req/sec
  • Floor, market cap, volume & owners
  • Email support
Sign in to subscribe

Pro

€24.50 /month

  • 615,000 calls / month
  • 15 requests / second
  • Hard cap (429 above quota, no overage)
  • 615,000 calls/month
  • 15 req/sec
  • Marketplace, wallet & analytics pipelines
  • Priority support
Sign in to subscribe

Scale

€58.50 /month

  • 3,080,000 calls / month
  • 30 requests / second
  • Hard cap (429 above quota, no overage)
  • 3,080,000 calls/month
  • 30 req/sec
  • NFT-analytics scale
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Crypto Trending API

What the crypto market is searching for right now, served live from the public CoinGecko trending feed with no key. This is hype and attention data — distinct from market-cap rankings, exchange tickers and DeFi feeds — surfacing the coins, NFT collections and categories with the biggest spike in search interest over the last 24 hours. The coins endpoint returns the trending coins ranked by search popularity, each with its live USD price, 24-hour change, market cap, 24-hour volume, market-cap rank and BTC price. The nfts endpoint returns the trending NFT collections with floor price (native and display), 24-hour floor change and 24-hour volume. The categories endpoint returns the trending narratives and sectors with market cap, volume and 24-hour change. Trending means ranked by CoinGecko search popularity, so rank 1 is the single most-searched asset of the moment — exactly the signal traders, bots and dashboards use to catch a move early. Read live from CoinGecko, nothing stored beyond a short protective cache. Ideal for crypto dashboards, trading bots, sentiment and hype trackers, and discovery feeds. Live, no key. 3 trending endpoints. For full price history use an OHLC or exchange API.

api.oanor.com/cryptotrending-api

Magic Eden API

Live Solana NFT-marketplace data from Magic Eden, the largest NFT marketplace on Solana — a marketplace order-book and trade-feed layer, not a floor-price aggregator: live collection market stats (floor price in SOL, listed count, 24h average sale price, all-time volume), the live order book of tokens on sale (SOL ask price, seller, token mint, rarity rank) and the live trade feed (buys, listings, bids, delistings with price, buyer, seller, on-chain signature and time).

api.oanor.com/magiceden-api

Flow EVM Chain API

Live on-chain data for Flow EVM mainnet (the EVM-equivalent environment on the Flow blockchain, native FLOW) via Blockscout — no key. Read network stats (block height, total transactions, gas), a gas oracle in gwei, the most recent blocks and full block detail by height or hash, any address balance and contract info, full transaction detail, ERC-20 token detail by contract, and a universal search across addresses, tokens, blocks and transactions. Real chain data with the rotating proxy as automatic fallback — 9 endpoints. Ideal for wallets, explorers, NFT and gaming tooling, portfolio trackers and on-chain monitoring on Flow EVM.

api.oanor.com/flow-api

RARI Chain API

Live on-chain data for RARI Chain mainnet (an Arbitrum-Orbit NFT-focused Ethereum L3, native ETH) via Blockscout — no key. Read network stats (block height, total transactions, gas), a gas oracle in gwei, the most recent blocks and full block detail by height or hash, any address balance and contract info, full transaction detail, ERC-20 token detail by contract, and a universal search across addresses, tokens, blocks and transactions. Real chain data with the rotating proxy as automatic fallback — 9 endpoints. Ideal for wallets, explorers, NFT tooling, portfolio trackers and on-chain monitoring on RARI Chain.

api.oanor.com/rari-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for NFT Collections API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call NFT Collections API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for NFT Collections 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 NFT Collections API cost?
NFT Collections API has a free tier with 100 calls / month. Paid plans start at €9.50 / 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 NFT Collections API GDPR-compliant?
All requests to NFT Collections 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/nft-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/nft-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/nft-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/nft-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.