A collection's market data
API · /nft-api
NFT Collections API
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 health
unhealthy- Uptime
- 41.67%
- Server probes · 24h
- Avg latency
- 192 ms
- Server probes · 24h
- Subscribers
- 3,973
- active
- Total calls
- 76
- last 7 days
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
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
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
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
Built by
Related APIs
Other APIs with overlapping tags.
Teritori Chain API
Real-time on-chain data for Teritori (chain-id teritori-1), a multi-chain Cosmos-SDK community hub for social, NFTs and dApps, secured by delegated proof-of-stake with TORI 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 TORI, commission rate and jailed flag — sorted by stake, plus the total bonded and not-bonded TORI. The supply endpoint returns the total TORI supply (in TORI and base utori), 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 Teritori 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 NFT collections or token prices use a dedicated indexer/market API.
api.oanor.com/teritori-api
Stargaze Chain API
Real-time on-chain data for Stargaze (chain-id stargaze-1), the Cosmos NFT marketplace Layer-1 secured by delegated proof-of-stake, with STARS 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, self+delegated stake in STARS, commission rate and jailed flag — sorted by stake, plus the total bonded and not-bonded STARS. The supply endpoint returns the total STARS supply (in STARS and base ustars), 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 Stargaze 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 NFT collections or wallet holdings use a dedicated NFT/indexer API.
api.oanor.com/stargaze-api
Aptos Token & NFT API
Browse the Aptos token universe live from the official public Aptos Indexer GraphQL — no key. The Aptos on-chain reader resolves a single address's state from the fullnode, but it cannot browse the fungible-asset universe, rank tokens by supply, browse NFT collections, or list who holds a token. This opens that, on top of the Indexer. Discover and rank Aptos fungible assets (the FA / coin standard) with their asset type, name, symbol, decimals, decimal-adjusted supply, token standard and creator; browse NFT collections ranked by current supply with their creator, max supply and metadata uri; and list the holders of any fungible asset with their decimal-adjusted balances, largest first. The discovery, NFT and distribution layer for Aptos wallets, token explorers, NFT marketplaces and analytics. Distinct from the Aptos on-chain reader (per-address account state), the validator reader and the Move view-function reader. Live from the indexer; short cache only.
api.oanor.com/aptostokens-api
Tezos FA Token & NFT API
Browse the Tezos token universe live from the public TzKT indexer — no key. Tezos tokens are FA1.2 (fungible) and FA2 (fungible or NFT) contracts. The Tezos on-chain reader returns the token balances a single address holds, but it cannot browse the token universe, rank tokens by holders, list who holds a token, or trace a token's transfers. This opens that. Discover and rank FA tokens and NFT collections with their TzKT token id, contract, standard, name, symbol, decimals, holder and transfer counts, decimal-adjusted total supply and — for NFTs — their resolved artwork image; list the holders of any token with their decoded balances, largest first; and trace a token's recent transfers with sender, receiver, decimal-adjusted amount and time (a mint shows no sender, a burn no receiver). The discovery, NFT and distribution layer for Tezos wallets, token explorers, NFT marketplaces and analytics. Distinct from the Tezos on-chain reader (per-address token balances), the self-amending governance reader, the baker/validator reader and the smart-rollup reader. Live from the indexer; short cache only.
api.oanor.com/tezostokens-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for NFT Collections API?
What's the rate limit for NFT Collections API?
How much does NFT Collections API cost?
Can I cancel my subscription anytime?
Is NFT Collections 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/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 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.