From 7adb7d809e31c0a3f6ea3dffea238ee049a9ac09 Mon Sep 17 00:00:00 2001
From: Florent Tapponnier <160007691+Flotapponnier@users.noreply.github.com>
Date: Sat, 8 Aug 2026 08:35:38 +0200
Subject: [PATCH 1/2] hotfix: hide data-api aug report (draft: true)
---
.../reports/data-api/2026-08-state-of-crypto-data-apis.mdx | 1 +
src/lib/reports/loader.ts | 6 +++++-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/src/content/reports/data-api/2026-08-state-of-crypto-data-apis.mdx b/src/content/reports/data-api/2026-08-state-of-crypto-data-apis.mdx
index b6d3c4f3..aac278a5 100644
--- a/src/content/reports/data-api/2026-08-state-of-crypto-data-apis.mdx
+++ b/src/content/reports/data-api/2026-08-state-of-crypto-data-apis.mdx
@@ -3,6 +3,7 @@ title: "Best Crypto Data API 2026: Price Feeds, Coverage, and Chain Breadth Rank
category: "data-api"
slug: "2026-08-state-of-crypto-data-apis"
publishedAt: "2026-08-04"
+draft: true
period: "August 2026"
summary: "Seven live benchmarks across six categories reveal a fragmented market: no single provider leads price feeds, token metadata, DEX coverage, NFT data, asset registry, and wallet labeling simultaneously. This report maps where each provider wins, where it falls short, and why."
heroFinding: "GeckoTerminal indexes 253 blockchains for DEX data but publishes prices 12 seconds after they move. The fastest price aggregators close that gap to under one second — but cover a fraction of those chains. No provider in this cohort leads more than two of the six categories measured."
diff --git a/src/lib/reports/loader.ts b/src/lib/reports/loader.ts
index 7acbaeda..0c428059 100644
--- a/src/lib/reports/loader.ts
+++ b/src/lib/reports/loader.ts
@@ -17,6 +17,7 @@ export type ReportMeta = {
readingTime: number;
ogImage?: string;
canonical: string;
+ draft?: boolean;
};
export type Report = ReportMeta & {
@@ -67,6 +68,7 @@ function parseReport(filePath: string): Report {
readingTime: Number(data.readingTime ?? 10),
ogImage: data.ogImage ? String(data.ogImage) : undefined,
canonical: String(data.canonical ?? ""),
+ draft: Boolean(data.draft ?? false),
content,
};
}
@@ -86,7 +88,9 @@ export function getAllReports(): Report[] {
}
}
}
- return reports.sort((a, b) => b.publishedAt.localeCompare(a.publishedAt));
+ return reports
+ .filter((r) => !r.draft)
+ .sort((a, b) => b.publishedAt.localeCompare(a.publishedAt));
}
export function getReportsByCategory(categorySlug: string): Report[] {
From 3fb607bd6b11aba1b43efd8a2d449487da3421f6 Mon Sep 17 00:00:00 2001
From: Florent Tapponnier <160007691+Flotapponnier@users.noreply.github.com>
Date: Sat, 8 Aug 2026 08:40:52 +0200
Subject: [PATCH 2/2] report: publish data-api aug 2026, clean em dashes,
update date
---
.../2026-08-state-of-crypto-data-apis.mdx | 103 ++++++++++--------
1 file changed, 58 insertions(+), 45 deletions(-)
diff --git a/src/content/reports/data-api/2026-08-state-of-crypto-data-apis.mdx b/src/content/reports/data-api/2026-08-state-of-crypto-data-apis.mdx
index aac278a5..30905821 100644
--- a/src/content/reports/data-api/2026-08-state-of-crypto-data-apis.mdx
+++ b/src/content/reports/data-api/2026-08-state-of-crypto-data-apis.mdx
@@ -2,24 +2,29 @@
title: "Best Crypto Data API 2026: Price Feeds, Coverage, and Chain Breadth Ranked"
category: "data-api"
slug: "2026-08-state-of-crypto-data-apis"
-publishedAt: "2026-08-04"
-draft: true
+publishedAt: "2026-08-08"
period: "August 2026"
summary: "Seven live benchmarks across six categories reveal a fragmented market: no single provider leads price feeds, token metadata, DEX coverage, NFT data, asset registry, and wallet labeling simultaneously. This report maps where each provider wins, where it falls short, and why."
-heroFinding: "GeckoTerminal indexes 253 blockchains for DEX data but publishes prices 12 seconds after they move. The fastest price aggregators close that gap to under one second — but cover a fraction of those chains. No provider in this cohort leads more than two of the six categories measured."
+heroFinding: "GeckoTerminal indexes 253 blockchains for DEX data but publishes prices 12 seconds after they move. The fastest price aggregators close that gap to under one second, but cover a fraction of those chains. No provider in this cohort leads more than two of the six categories measured."
author: "OpenChainBench Research"
readingTime: 14
canonical: "https://openchainbench.com/reports/data-api/2026-08-state-of-crypto-data-apis"
---
-- Seven independent benchmarks across price feeds, token metadata, asset registry, DEX coverage, NFT data, and wallet labeling covering 15+ providers.
-- No provider leads all six categories. The market is structurally fragmented by use case.
-- Price aggregators: p50 head lag ranges from 707 ms to over 12 seconds depending on architecture. The gap widens to 7.9x on Solana.
-- Token metadata coverage is a statistical tie at the top: two providers within 0.6 percentage points of each other.
-- Asset registry breadth spans 81 to 461 chains — a 5.7x range reflecting a decade-scale difference in onboarding investment.
-- Wallet labeling is dominated by chain-native specialists: coverage drops sharply for any provider working across multiple chains simultaneously.
-- NFT metadata shows the widest intra-cohort gap of any category: 23 percentage points between leader and the largest general-purpose provider.
+Seven independent benchmarks across price feeds, token metadata, asset registry, DEX coverage, NFT data, and wallet labeling covering 15+ providers.
+
+No provider leads all six categories. The market is structurally fragmented by use case.
+
+Price aggregators: p50 head lag ranges from 707 ms to over 12 seconds depending on architecture. The gap widens to 7.9x on Solana.
+
+Token metadata coverage is a statistical tie at the top: two providers within 0.6 percentage points of each other.
+
+Asset registry breadth spans 81 to 461 chains, a 5.7x range reflecting a decade-scale difference in onboarding investment.
+
+Wallet labeling is dominated by chain-native specialists: coverage drops sharply for any provider working across multiple chains simultaneously.
+
+NFT metadata shows the widest intra-cohort gap of any category: 23 percentage points between leader and the largest general-purpose provider.
@@ -54,23 +59,23 @@ Seven distinct providers occupy the seven category-leader slots above. This frag
-The headline figure — 707 ms for Mobula — is a cross-chain, cross-region median. The distribution underneath it matters more than the single number.
+The headline figure (707 ms for Mobula) is a cross-chain, cross-region median. The distribution underneath it matters more than the single number.
Codex trails by 1.65x globally. That gap widens to 7.9x on Solana and narrows to near-zero on Base, where the two providers differ by only 20 ms. The chain you're pricing determines whether the ranking matters.
-GeckoTerminal is in a separate category entirely. Its p50 of 12,489 ms — over twelve seconds — is not a latency ranking failure. It reflects a fundamentally different data pipeline architecture. GeckoTerminal does not attempt to be a real-time price feed in the sense that Mobula or Codex do. Its DEX indexing product (the best in coverage, as shown below) operates on a model where pool state is synced in batches, not streamed event by event. The head lag figure is a consequence of that architecture choice, not a quality deficit in isolation.
+GeckoTerminal is in a separate category entirely. Its p50 of 12,489 ms (over twelve seconds) is not a latency ranking failure. It reflects a fundamentally different data pipeline architecture. GeckoTerminal does not attempt to be a real-time price feed in the sense that Mobula or Codex do. Its DEX indexing product (the best in coverage, as shown below) operates on a model where pool state is synced in batches, not streamed event by event. The head lag figure is a consequence of that architecture choice, not a quality deficit in isolation.
The practical implication: if your application displays prices and a 12-second delay between on-chain events and your UI is visible to users, GeckoTerminal's price endpoint is not viable for that use case. If you need DEX pool metadata, pool history, or the deepest chain coverage for off-chain analytics, GeckoTerminal is the strongest option in the field.
### Regional variance
-Mobula's regional spread is remarkably tight: 717 ms from US East versus 709 ms from EU West — an 8 ms difference. This consistency suggests Mobula distributes its indexing pipeline geographically rather than running from a single origin. Codex shows a similar pattern (1,169 ms US vs 1,178 ms EU). Neither provider penalizes European users meaningfully relative to US users. Singapore data was unavailable in this report cycle.
+Mobula's regional spread is remarkably tight: 717 ms from US East versus 709 ms from EU West, an 8 ms difference. This consistency suggests Mobula distributes its indexing pipeline geographically rather than running from a single origin. Codex shows a similar pattern (1,169 ms US vs 1,178 ms EU). Neither provider penalizes European users meaningfully relative to US users. Singapore data was unavailable in this report cycle.
## Solana: Block Architecture and Its Consequences
The most striking figure in the price feed bench is Mobula's head lag on Solana: **99 ms**. A tenth of a second from on-chain event to API emission.
-Codex reaches the same chain in 779 ms. The 7.9x gap is not a Codex failure — it is a reflection of what Solana's architecture makes possible. Solana's block time is approximately 400 ms, versus Base and BNB where blocks land every 2 and 3 seconds respectively. An aggregator that subscribes to Solana's native websocket feed and processes confirmations in real time can publish prices faster than any EVM chain allows, because the chain itself confirms faster.
+Codex reaches the same chain in 779 ms. The 7.9x gap is not a Codex failure. It is a reflection of what Solana's architecture makes possible. Solana's block time is approximately 400 ms, versus Base and BNB where blocks land every 2 and 3 seconds respectively. An aggregator that subscribes to Solana's native websocket feed and processes confirmations in real time can publish prices faster than any EVM chain allows, because the chain itself confirms faster.
**Head lag by chain (p50, 24 h)**
@@ -89,7 +94,7 @@ The implication for builders: a "sub-second price feed" claim means different th
-The metadata bench is one of the few categories where the ranking is genuinely ambiguous. Codex leads at 64.3%, Mobula follows at 63.7%. The gap is 0.6 percentage points — within normal measurement noise for this bench. Both providers are effectively tied on metadata coverage for newly-launched tokens.
+The metadata bench is one of the few categories where the ranking is genuinely ambiguous. Codex leads at 64.3%, Mobula follows at 63.7%. The gap is 0.6 percentage points, within normal measurement noise for this bench. Both providers are effectively tied on metadata coverage for newly-launched tokens.
Jupiter's 24.9% requires context. Jupiter is Solana-only; it returns zero coverage on EVM chains (Base, BNB) by construction. The bench scores it on the full multi-chain sample set, so Jupiter's 24.9% headline undercounts its actual performance on Solana-only tokens. The cross-chain headline is the correct figure for any builder working with EVM tokens or multi-chain applications; for Solana-native metadata, consult the per-chain breakdown on the bench page.
@@ -103,7 +108,7 @@ CoinGecko's 461-chain registry is more than twice as wide as CoinPaprika's 307 c
CoinGecko's registry breadth reflects a decade of manual chain onboarding and a community-submission model. Reaching 461 chains means accepting chains with thin liquidity, inactive validators, and minimal trading activity. The registry count measures scope, not data quality. A chain with one active token and a single liquidity pool is still counted.
-CoinGecko's registry breadth does not correlate with real-time price freshness — CoinGecko has no entry in the aggregator-head-lag bench. The asset registry and the price feed are different products serving different use cases: token discovery and contract-address lookup versus live market data. A builder who needs both must combine providers.
+CoinGecko's registry breadth does not correlate with real-time price freshness. CoinGecko has no entry in the aggregator-head-lag bench. The asset registry and the price feed are different products serving different use cases: token discovery and contract-address lookup versus live market data. A builder who needs both must combine providers.
The practical decision: if you need to answer "does this contract exist on chain X", CoinGecko's registry is the deepest lookup available. If you need a real-time price for a token on that chain, you need a provider with both registry coverage and a live price pipeline.
@@ -111,9 +116,9 @@ The practical decision: if you need to answer "does this contract exist on chain
-The token quote bench measures something different from all other coverage benches: it tests providers on tokens created within the last hour, sourced from live launchpad feeds. This is the hardest case — the token may have no liquidity on major venues, no metadata, and may exist only on a single chain.
+The token quote bench measures something different from all other coverage benches: it tests providers on tokens created within the last hour, sourced from live launchpad feeds. This is the hardest case, where the token may have no liquidity on major venues, no metadata, and may exist only on a single chain.
-Jupiter's 96.6% is the strongest absolute figure in the entire data API cohort across all seven benchmarks. On Solana, where the majority of its probe tokens live, Jupiter routes nearly every token successfully. Jupiter quotes 96 of 100 freshly launched tokens, a direct consequence of its native integration with Solana's pool infrastructure — it sees new pools seconds after creation.
+Jupiter's 96.6% is the strongest absolute figure in the entire data API cohort across all seven benchmarks. On Solana, where the majority of its probe tokens live, Jupiter routes nearly every token successfully. Jupiter quotes 96 of 100 freshly launched tokens, a direct consequence of its native integration with Solana's pool infrastructure. It sees new pools seconds after creation.
KyberSwap at 92.9% covers EVM chains competently. Mobula at 76.4% trails both, meaning roughly one in four new tokens across chains cannot be quoted. For applications that handle established tokens only (top-1,000 by market cap), all three providers will perform near 100%. The quote-coverage bench is specifically relevant for launchpad analytics, meme-token apps, or any product that needs to quote tokens within minutes of their creation.
@@ -123,7 +128,7 @@ KyberSwap at 92.9% covers EVM chains competently. Mobula at 76.4% trails both, m
GeckoTerminal's 253 chains is a market-leading figure by a wide margin. Codex's 122 chains is the next closest at roughly half. Sim by Dune at 64 covers EVM mainnets only. DexPaprika at 36 is the narrowest in the cohort.
-The juxtaposition with the head-lag bench is the clearest illustration of the breadth-freshness trade-off in the entire dataset. GeckoTerminal leads DEX coverage by 2x and trails on price freshness by 17x. These are not separate failures — they are the same architecture decision viewed from two angles. Indexing 253 chains with a streaming price pipeline is not technically feasible on a data API provider's infrastructure budget in 2026. The choice to cover more chains is the choice to accept a longer synchronization cycle.
+The juxtaposition with the head-lag bench is the clearest illustration of the breadth-freshness trade-off in the entire dataset. GeckoTerminal leads DEX coverage by 2x and trails on price freshness by 17x. These are not separate failures. They are the same architecture decision viewed from two angles. Indexing 253 chains with a streaming price pipeline is not technically feasible on a data API provider's infrastructure budget in 2026. The choice to cover more chains is the choice to accept a longer synchronization cycle.
For DEX analytics, backtesting, chain comparisons, or any use case that does not require sub-second prices, GeckoTerminal's breadth is the correct trade-off. For applications that need current prices on a specific chain, providers in the head-lag bench offer far fresher data on their supported chains, with DEX chain count as the cost.
@@ -131,13 +136,13 @@ For DEX analytics, backtesting, chain comparisons, or any use case that does not
-The NFT metadata bench has the narrowest competitive field in this report: three providers, all benchmarked against a fixed set of 50 Ethereum blue-chip collections. All three return 100% API availability — the ranking is driven entirely by coverage completeness.
+The NFT metadata bench has the narrowest competitive field in this report: three providers, all benchmarked against a fixed set of 50 Ethereum blue-chip collections. All three return 100% API availability. The ranking is driven entirely by coverage completeness.
Moralis leads at 97.1%, OpenSea at 93.2%, and Alchemy at 73.7%. The 23-percentage-point gap between Moralis and Alchemy is the largest spread between a cohort leader and a major incumbent in any category in this report.
-Alchemy's gap is specific to the `floor_eth` field. Alchemy's `getContractMetadata` endpoint focuses on on-chain collection metadata — name, image, external URL — rather than marketplace-sourced order book data. Delivering a live floor price requires actively polling or subscribing to marketplace orders, which is not the primary function of Alchemy's contract metadata endpoint. OpenSea, which operates its own marketplace, surfaces floor prices naturally — though the bench notes this costs two API calls per collection versus one for Moralis.
+Alchemy's gap is specific to the `floor_eth` field. Alchemy's `getContractMetadata` endpoint focuses on on-chain collection metadata (name, image, external URL) rather than marketplace-sourced order book data. Delivering a live floor price requires actively polling or subscribing to marketplace orders, which is not the primary function of Alchemy's contract metadata endpoint. OpenSea, which operates its own marketplace, surfaces floor prices naturally, though the bench notes this costs two API calls per collection versus one for Moralis.
-For builders who need collection-level metadata plus floor prices from a single endpoint, Moralis is the clear choice. For on-chain metadata only (name, image, external URL), Alchemy is competitive despite the lower headline figure — the gap collapses when `floor_eth` is excluded from the score.
+For builders who need collection-level metadata plus floor prices from a single endpoint, Moralis is the clear choice. For on-chain metadata only (name, image, external URL), Alchemy is competitive despite the lower headline figure. The gap collapses when `floor_eth` is excluded from the score.
## Wallet Labels: No One Owns the Graph
@@ -156,13 +161,13 @@ The wallet labeling bench has the most providers of any category in this report:
| TonAPI | 35.4% | TON |
| WalletExplorer | 19.9% | Bitcoin / EVM |
-Helius (Solana), StellarExpert (Stellar), and XRPScan (XRP) each maintain manually curated entity graphs for their specific chain. Their coverage is built on years of chain-specific research, community tagging, and validator partnerships — not algorithmic entity resolution. The result is a 40-percentage-point lead over general-purpose multi-chain providers.
+Helius (Solana), StellarExpert (Stellar), and XRPScan (XRP) each maintain manually curated entity graphs for their specific chain. Their coverage is built on years of chain-specific research, community tagging, and validator partnerships, not algorithmic entity resolution. The result is a 40-percentage-point lead over general-purpose multi-chain providers.
-This is not a quality failure by multi-chain providers. It reflects the fundamental difficulty of maintaining a curated entity graph across many chains simultaneously. Wallet labeling is editorial work at scale — someone must decide that address 0x... is "Binance Hot Wallet 14" — and chain-native teams have the ecosystem context and community relationships to do that work accurately and quickly.
+This is not a quality failure by multi-chain providers. It reflects the fundamental difficulty of maintaining a curated entity graph across many chains simultaneously. Wallet labeling is editorial work at scale. Someone must decide that address 0x... is "Binance Hot Wallet 14", and chain-native teams have the ecosystem context and community relationships to do that work accurately and quickly.
-OLI (Open Labels Initiative), which attempts a decentralized labeling standard on EVM chains, sits at 50.4% — marginally ahead of Blockscout but not dramatically better than general-purpose providers. The curation problem is harder than the coordination problem: even with a shared protocol, high-coverage entity resolution requires significant editorial investment.
+OLI (Open Labels Initiative), which attempts a decentralized labeling standard on EVM chains, sits at 50.4%, marginally ahead of Blockscout but not dramatically better than general-purpose providers. The curation problem is harder than the coordination problem: even with a shared protocol, high-coverage entity resolution requires significant editorial investment.
-TonAPI at 35.4% reflects TON's still-developing ecosystem tooling. WalletExplorer at 19.9% has near-perfect API availability (99.8%) but the narrowest entity graph in the cohort — it has labels, just very few of them.
+TonAPI at 35.4% reflects TON's still-developing ecosystem tooling. WalletExplorer at 19.9% has near-perfect API availability (99.8%) but the narrowest entity graph in the cohort. It has labels, just very few of them.
## Cross-Provider Scorecard
@@ -174,28 +179,28 @@ Across seven benchmarks, the competitive landscape resolves into four archetypes
**Vertical specialists** dominate a single chain or use case. Jupiter (96.6% Solana quote coverage), Helius (84.1% Solana wallet labels), and Moralis (97.1% NFT metadata) each lead in a category where their infrastructure confers a structural advantage. None of them lead in a second category.
-**Generalists** achieve mid-table finishes across multiple categories. Codex appears in multiple benches with competitive but rarely dominant scores — it leads token metadata by 0.6 pp and indexes 122 DEX chains. No generalist is the obvious answer for an application that needs everything, because no single-provider answer exists yet.
+**Generalists** achieve mid-table finishes across multiple categories. Codex appears in multiple benches with competitive but rarely dominant scores. It leads token metadata by 0.6 pp and indexes 122 DEX chains. No generalist is the obvious answer for an application that needs everything, because no single-provider answer exists yet.
## Decision Framework
-Price freshness is the primary constraint. Check the per-chain breakdown on the [aggregator-head-lag](/benchmarks/aggregator-head-lag) bench before committing to a provider — Base is a near coin-flip between the two leaders, Solana is not. Both top providers run near-100% success rates across their supported chains.
+Price freshness is the primary constraint. Check the per-chain breakdown on the [aggregator-head-lag](/benchmarks/aggregator-head-lag) bench before committing to a provider. Base is a near coin-flip between the two leaders; Solana is not. Both top providers run near-100% success rates across their supported chains.
-Quote coverage on fresh tokens is the constraint. Jupiter is the only choice for Solana launchpad tokens (96.6%). For EVM chains (Base, BNB), KyberSwap (92.9%) leads. Build a fallback path for missing quotes — no provider in the cohort covers every freshly launched token across all chains.
+Quote coverage on fresh tokens is the constraint. Jupiter is the only choice for Solana launchpad tokens (96.6%). For EVM chains (Base, BNB), KyberSwap (92.9%) leads. Build a fallback path for missing quotes. No provider in the cohort covers every freshly launched token across all chains.
-CoinGecko's 461-chain registry is the deepest single source for contract address lookup. For DEX pool metadata on niche chains, GeckoTerminal covers 253. Both are static or near-static lookups — safe to cache aggressively. Neither is a real-time price source.
+CoinGecko's 461-chain registry is the deepest single source for contract address lookup. For DEX pool metadata on niche chains, GeckoTerminal covers 253. Both are static or near-static lookups, safe to cache aggressively. Neither is a real-time price source.
-Moralis leads (97.1%) and delivers floor prices in a single API call. OpenSea is competitive (93.2%) but costs two calls per collection. Alchemy's 73.7% headline is largely driven by the floor-price gap — if you don't display floor prices, Alchemy is closer to parity on the remaining four fields.
+Moralis leads (97.1%) and delivers floor prices in a single API call. OpenSea is competitive (93.2%) but costs two calls per collection. Alchemy's 73.7% headline is largely driven by the floor-price gap. If you don't display floor prices, Alchemy is closer to parity on the remaining four fields.
-Wallet labeling requires chain-native providers for maximum coverage. For Solana: Helius (84.1%). For XRP: XRPScan (79.8%). For Stellar: StellarExpert (80%). For EVM: Blockscout (55.9%) or OLI (50.4%). No single provider reaches above 85% across all eleven chains simultaneously — plan for missing labels on non-specialist chains as the baseline, not the edge case.
+Wallet labeling requires chain-native providers for maximum coverage. For Solana: Helius (84.1%). For XRP: XRPScan (79.8%). For Stellar: StellarExpert (80%). For EVM: Blockscout (55.9%) or OLI (50.4%). No single provider reaches above 85% across all eleven chains simultaneously. Plan for missing labels on non-specialist chains as the baseline, not the edge case.
@@ -206,20 +211,28 @@ GeckoTerminal's 253-chain index is the only viable answer for breadth. Accept th
The clearest finding across all seven benchmarks is that the crypto data API market has not converged. The providers who win on price freshness lose on chain breadth; the providers who win on chain breadth lose on price freshness. Chain-native specialists dominate their corner of the graph but fall to mid-table the moment you need coverage outside their primary ecosystem.
-This fragmentation is not a market failure in the short-term sense. It is the expected outcome of an industry where the technical demands of each category — streaming price indexing, registry maintenance, DEX pool tracking, entity resolution — are genuinely different and resource-intensive. No provider has had the time or capital to lead across all of them.
+This fragmentation is not a market failure in the short-term sense. It is the expected outcome of an industry where the technical demands of each category (streaming price indexing, registry maintenance, DEX pool tracking, entity resolution) are genuinely different and resource-intensive. No provider has had the time or capital to lead across all of them.
-The practical consequence for builders in 2026: most production applications using crypto data will need two or more providers simultaneously. A real-time price feed from a speed specialist, combined with a chain-agnostic registry from a breadth maximalist, is the pattern the benchmark data supports — not a single-vendor stack. The decision framework above maps which combination makes sense for each use case.
+The practical consequence for builders in 2026: most production applications using crypto data will need two or more providers simultaneously. A real-time price feed from a speed specialist, combined with a chain-agnostic registry from a breadth maximalist, is the pattern the benchmark data supports, not a single-vendor stack. The decision framework above maps which combination makes sense for each use case.
## Sources
-All data in this report is derived from OpenChainBench's live benchmarks. Figures are p50 over a 24-hour rolling window unless noted. Bench data is live and updates continuously — figures in this report reflect the state as of August 4, 2026.
-
-- **Price feeds:** [aggregator-head-lag](/benchmarks/aggregator-head-lag) · [api/stat/aggregator-head-lag](/api/stat/aggregator-head-lag)
-- **Token metadata:** [metadata-coverage](/benchmarks/metadata-coverage) · [asset-registry-coverage](/benchmarks/asset-registry-coverage) · [token-quote-coverage](/benchmarks/token-quote-coverage)
-- **Wallet data:** [wallet-labels-coverage](/benchmarks/wallet-labels-coverage)
-- **DEX:** [dex-network-coverage](/benchmarks/dex-network-coverage)
-- **NFT:** [nft-collection-metadata](/benchmarks/nft-collection-metadata)
-- **Data API hub:** [/data-api](/data-api) — live cross-bench rankings, updated every 60 seconds
-- **Harness source:** [github.com/ChainBench/OpenChainBench/harnesses](https://github.com/ChainBench/OpenChainBench/tree/main/harnesses)
-- **License:** All data and figures in this report are published under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/). You may reproduce them with attribution to OpenChainBench and a link to the canonical URL.
-- **Corrections:** File a [GitHub issue](https://github.com/ChainBench/OpenChainBench/issues/new). Material corrections are applied in place with a dated note.
+All data in this report is derived from OpenChainBench's live benchmarks. Figures are p50 over a 24-hour rolling window unless noted. Bench data is live and updates continuously. Figures in this report reflect the state as of August 8, 2026.
+
+**Price feeds:** [aggregator-head-lag](/benchmarks/aggregator-head-lag) · [api/stat/aggregator-head-lag](/api/stat/aggregator-head-lag)
+
+**Token metadata:** [metadata-coverage](/benchmarks/metadata-coverage) · [asset-registry-coverage](/benchmarks/asset-registry-coverage) · [token-quote-coverage](/benchmarks/token-quote-coverage)
+
+**Wallet data:** [wallet-labels-coverage](/benchmarks/wallet-labels-coverage)
+
+**DEX:** [dex-network-coverage](/benchmarks/dex-network-coverage)
+
+**NFT:** [nft-collection-metadata](/benchmarks/nft-collection-metadata)
+
+**Data API hub:** [/data-api](/data-api) · live cross-bench rankings, updated every 60 seconds
+
+**Harness source:** [github.com/ChainBench/OpenChainBench/harnesses](https://github.com/ChainBench/OpenChainBench/tree/main/harnesses)
+
+**License:** All data and figures in this report are published under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/). You may reproduce them with attribution to OpenChainBench and a link to the canonical URL.
+
+**Corrections:** File a [GitHub issue](https://github.com/ChainBench/OpenChainBench/issues/new). Material corrections are applied in place with a dated note.