GENZ TECH publishes 6 maintained datasets — AI coding benchmarks, model API pricing, tech funding rounds, actively exploited CVEs and memecoin rankings — as free public JSON and CSV. There is no API key, no signup and no rate limit: every endpoint is a static file served from a CDN with Access-Control-Allow-Origin: *, so you can fetch it straight from a browser. Everything is CC BY 4.0, so commercial use is fine as long as you credit GENZ TECH and link back.
the endpoints
| Dataset | Endpoint | Records | Updated | Links |
|---|---|---|---|---|
| AI Coding LeaderboardFrontier AI models ranked for coding by verified SWE-bench Verified and Pro scores, with per-token pricing, context window and open-weights status. | /leaderboard.json · /leaderboard.csv |
21 | 2026-07-23 | page · JSON · CSV |
| AI Coding Leaderboard HistoryEvery historical snapshot of the leaderboard, reconstructed from this repository's git history — how the ranking and its leader changed over time. | /leaderboard-history.json · /leaderboard-history.csv |
11 | 2026-07-23 | page · JSON · CSV |
| Tech Funding TrackerMajor AI and tech funding rounds we have covered and verified: amount, round, sector, lead investors, valuation and the article documenting each. | /funding.json · /funding.csv |
39 | 2026-07-24 | page · JSON · CSV |
| CVE WatchlistHigh-impact vulnerabilities triaged by real-world exploitation status, with CVSS, CISA KEV flag and the specific remediation action for each. | /cves.json · /cves.csv |
15 | 2026-07-24 | page · JSON · CSV |
| Top 10 Crypto PricesThe 10 largest cryptocurrencies by market cap with live price, 24h change, market cap, all-time high and how far below that high each currently trades. | /crypto.json · /crypto.csv |
10 | 2026-07-24 | page · JSON · CSV |
| Memecoin TrackerTop memecoins per chain by market cap — price, 24h change, market cap and volume, snapshotted at build time from CoinGecko. | /memecoins.json · /memecoins.csv |
5 | 2026-07-24 | page · JSON · CSV |
All paths are relative to https://genztech.blog/api/v1/. The catalog at https://genztech.blog/api/v1/index.json lists every dataset with its fields, record count and last-updated date — fetch that first if you are wiring this up programmatically.
how do I call it?
# every dataset, with field lists and record counts
$ curl -s https://genztech.blog/api/v1/index.json
# one dataset
$ curl -s https://genztech.blog/api/v1/leaderboard.json
// CORS is open — this works from any origin, no key.
> const res = await fetch("https://genztech.blog/api/v1/leaderboard.json");
> const data = await res.json();
> console.log(data.updated);
Both formats carry the same data, but not always the same row count. JSON preserves nested structure and null for anything unconfirmed; CSV flattens it, so where a record contains a list the CSV expands to one row per leaf — the memecoin tracker is 5 chains in JSON and one row per coin per chain in CSV, and the leaderboard history is one row per model per snapshot. The records and csvRows fields in the catalog give you both counts up front.
what are the terms?
- Licence. CC BY 4.0 — use it anywhere, including commercially.
- Attribution. Credit "GENZ TECH" and link to the dataset page you used. That link is the whole price.
- No key, no limit. Nothing to sign up for. Please cache instead of polling — the data moves once a day at most.
- Accuracy. Only figures confirmed against a primary source are published; anything unverified is
null, never an estimate. - Stability.
/api/v1/paths do not change shape. Breaking changes would ship as/api/v2/.
what is in each dataset?
AI Coding Leaderboard leaderboard
Frontier AI models ranked for coding by verified SWE-bench Verified and Pro scores, with per-token pricing, context window and open-weights status. Records live under models.
rank name maker open sweBenchVerified sweBenchPro terminalBench inputPricePer1M outputPricePer1M context verified sameAs
Endpoint: https://genztech.blog/api/v1/leaderboard.json · CSV · Source page: /ai-coding-leaderboard/
AI Coding Leaderboard History leaderboard-history
Every historical snapshot of the leaderboard, reconstructed from this repository's git history — how the ranking and its leader changed over time. Records live under snapshots.
date commit updated rankedCount leader models
Endpoint: https://genztech.blog/api/v1/leaderboard-history.json · CSV · Source page: /ai-coding-leaderboard/
Tech Funding Tracker funding
Major AI and tech funding rounds we have covered and verified: amount, round, sector, lead investors, valuation and the article documenting each. Records live under rounds.
company amountM amount round sector investors valuation date dateDisplay what post
Endpoint: https://genztech.blog/api/v1/funding.json · CSV · Source page: /funding-tracker/
CVE Watchlist cves
High-impact vulnerabilities triaged by real-world exploitation status, with CVSS, CISA KEV flag and the specific remediation action for each. Records live under items.
id product type cvss status kev action date note post
Endpoint: https://genztech.blog/api/v1/cves.json · CSV · Source page: /cve-watchlist/
Top 10 Crypto Prices crypto
The 10 largest cryptocurrencies by market cap with live price, 24h change, market cap, all-time high and how far below that high each currently trades. Records live under coins.
rank cgRank id name symbol priceUsd change24hPct marketCapUsd volume24hUsd allTimeHighUsd allTimeHighDate percentFromAllTimeHigh circulatingSupply stablecoin
Endpoint: https://genztech.blog/api/v1/crypto.json · CSV · Source page: /crypto-prices/
Memecoin Tracker memecoins
Top memecoins per chain by market cap — price, 24h change, market cap and volume, snapshotted at build time from CoinGecko. Records live under chains.
key label coins
Endpoint: https://genztech.blog/api/v1/memecoins.json · CSV · Source page: /memecoins/
prefer an embed?
If you want the live table on your page rather than the raw records, every tracker ships a self-contained embeddable widget — no script tag, just an iframe. The "cite & embed" block on each tracker page has a copy-paste snippet.
API questions
Do I need an API key?
No. There is no key, no signup, no quota and no auth of any kind. Every endpoint is a public static file on a CDN — a plain GET is all it takes.
Is there a rate limit?
Nothing is enforced. These are static files served from Cloudflare's edge, so requests do not hit an origin server. That said, the data changes at most once a day, so please cache your response instead of polling — the Cache-Control header tells you exactly how long it stays fresh.
Can I use this commercially?
Yes. Everything is published under CC BY 4.0, which permits commercial use. The one condition is attribution: credit "GENZ TECH" and link back to the dataset page you used.
How often does the data update?
Every site build, which runs at least daily. Each dataset carries its own `updated` field so you can tell when that specific dataset last changed, rather than when the file was last written.
Will these URLs break?
Paths under /api/v1/ are stable — that is the point of the version prefix. Any breaking change to a payload shape ships as a new /api/v2/ path, leaving v1 in place.
What if a number looks wrong?
Every tracker publishes only figures confirmed against a primary source; unverified entries render as null rather than an estimate. If you spot an error, mail it in via the contact page and it gets corrected at the source per our editorial standards.