Project identity & technical profile
API · /cryptoprojects-api
Crypto Project Team & Events API
The "who built it and what is on its calendar" view of a cryptocurrency, served from the public CoinPaprika feed. The coin endpoint returns the project's identity and technical profile — market-cap rank, coin-or-token type, whether it is active, the genesis date, development status, consensus / proof type, hashing algorithm, organisation structure, the open-source flag and its industry tags. The team endpoint returns the people behind the project — names and roles such as founders, authors and leads. The events endpoint returns the project's event calendar — conferences, mainnet launches, exchange listings and milestones, each with a date and a link, newest first. This is the project-and-people view of a coin — its team, profile and calendar, not its price — distinct from the price-feed, market and CoinGecko-profile APIs in the catalogue. A coin is a CoinPaprika id (btc-bitcoin); a bare symbol (btc) or name (bitcoin) is resolved automatically to the best-ranked match. Live, no key on the upstream, nothing stored.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 176 ms
- Server probes · 24h
- Subscribers
- 4,416
- active
- Total calls
- 0
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 25,000 calls / month
- 5 requests / second
- Hard cap (429 above quota, no overage)
- 25,000 calls/month
- 5 req/sec
- Profile, team & event calendar
- No credit card
Starter
€4.60 /month
- 295,000 calls / month
- 12 requests / second
- Hard cap (429 above quota, no overage)
- 295k calls/month
- 12 req/sec
- All coins & tokens
- Email support
Pro
€14.20 /month
- 1,280,000 calls / month
- 30 requests / second
- Hard cap (429 above quota, no overage)
- 1.28M calls/month
- 30 req/sec
- Due-diligence & research tools
- Priority support
Scale
€33.90 /month
- 4,550,000 calls / month
- 80 requests / second
- Hard cap (429 above quota, no overage)
- 4.55M calls/month
- 80 req/sec
- Data-platform scale
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Solana Validators & Staking API
Who secures Solana and how decentralised it is, read straight from a public Solana RPC node. Solana is proof-of-stake: validators vote with the SOL delegated to them, and the distribution of that stake decides both rewards and security. The validators endpoint ranks validators by activated stake, with each one's stake in SOL, its share of total stake, its commission and whether it is delinquent (currently failing to vote). The staking endpoint returns the staking economics — total active stake, the circulating and total SOL supply, the percentage of supply that is staked, the current inflation rate broken into its total, validator and foundation components, and the current epoch with its progress. The centralization endpoint computes the stake-centralisation metrics — the Nakamoto coefficient (the fewest validators that together control more than one third of the stake, the amount that could halt the chain under Byzantine-fault-tolerant consensus), the top-10 and top-20 stake share, and the Herfindahl concentration index. This is the Solana validator, staking and decentralisation data-cut, distinct from the Solana on-chain account/transaction API and the other staking and exchange APIs in the catalogue. Live from a public RPC, no key on the upstream, nothing stored.
api.oanor.com/solanavalidators-api
Bitcoin Mining Pool Distribution API
Who actually mines Bitcoin's blocks, served from the public blockchain.com pools feed. The distribution endpoint ranks the mining pools by the blocks they found over a window (24 hours to 10 days), with each pool's share of blocks and its estimated share of the network hash rate (in EH/s). The centralization endpoint turns that into mining-decentralisation metrics — the top pool's share, the top-3 and top-5 share, the Nakamoto coefficient (the fewest pools that together control more than half of the attributed blocks, a headline measure of how centralised mining is), the Herfindahl concentration index, and the share of blocks not attributed to a known pool. The pool endpoint looks up a single pool's blocks, share, rank and estimated hash rate. This is the mining-pool and hash-rate-distribution / centralisation data-cut — distinct from the mempool-snapshot, the aggregate on-chain-metrics and the price-feed APIs in the catalogue. Estimated per-pool hash rate = block share times network hash rate. Live, no key on the upstream, nothing stored.
api.oanor.com/miningpools-api
Bitcoin Historical Metrics API
The long-run on-chain economics of Bitcoin as time series, served from the public blockchain.com charts feed. Where snapshot APIs report the chain state right now, this is the history: how the hash rate, mining difficulty, miners' revenue, daily transaction count, transaction fees, market price, market capitalisation, circulating supply, mempool size, average block size, estimated on-chain transaction volume, daily unique addresses, UTXO count and median confirmation time have moved over months and years. The metric endpoint returns one metric's full daily time series over a chosen window (30 days to all-time) with summary statistics — first, last, change, percent change, minimum, maximum and average. The latest endpoint returns a metric's current value with its change versus the previous reading and versus 30 days ago. The metrics endpoint lists every available metric with its unit and category. This is the historical and charting view of Bitcoin's network economics — distinct from the live mempool-snapshot, the multi-chain network-stats and the price-feed APIs in the catalogue. Live, no key on the upstream, nothing stored.
api.oanor.com/bitcoinmetrics-api
Coincheck Exchange API
Live market data from Coincheck, one of Japan's largest retail crypto exchanges (Monex Group), straight from its public REST API. This is the single-venue Japanese-Yen (JPY) view. The ticker endpoint returns the live BTC/JPY summary — last price, bid, ask, 24h high/low and 24h volume. The orderbook endpoint returns the live BTC/JPY bid/ask depth with per-level price and size, plus the best bid/ask and the resulting spread. The trades endpoint returns the most recent executed trades for any listed pair, with price, amount, side and time. The rate endpoint returns the current Japanese-Yen price of any listed coin (BTC, ETH, XRP, ETC …). Together they answer "what does crypto cost in Japanese Yen on Coincheck right now, how deep is the BTC book, and what just traded" — a single-venue JPY-denominated exchange view, distinct from the aggregated cross-exchange market, whole-market overview and other regional exchange APIs in the catalogue. Live, no key on the upstream, nothing stored.
api.oanor.com/coincheck-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Crypto Project Team & Events API?
What's the rate limit for Crypto Project Team & Events API?
How much does Crypto Project Team & Events API cost?
Can I cancel my subscription anytime?
Is Crypto Project Team & Events 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/cryptoprojects-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/cryptoprojects-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/cryptoprojects-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/cryptoprojects-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.