Silicon Analysts Data API
Structured semiconductor data for AI agents, applications, and researchers. Free to use — no API key required for read endpoints.
Quick Start
# Get all AI accelerator cost breakdowns
curl https://siliconanalysts.com/api/v1/accelerators
# Filter by vendor
curl "https://siliconanalysts.com/api/v1/accelerators?vendor=NVIDIA"
# Calculate chip cost (POST)
curl -X POST https://siliconanalysts.com/api/v1/calculate/chip-cost \
-H "Content-Type: application/json" \
-d '{"dieWidth": 26, "dieHeight": 33, "processNode": "5nm"}'
# Get HBM market data
curl https://siliconanalysts.com/api/v1/hbm
# Search analysis articles
curl "https://siliconanalysts.com/api/v1/articles?q=tsmc&limit=5"Endpoints
| Method | Endpoint |
|---|---|
| GET | /api/v1 |
| GET | /api/v1/accelerators |
| GET | /api/v1/hbm |
| GET | /api/v1/articles |
| POST | /api/v1/calculate/chip-cost |
/api/v1Lists all available endpoints, schemas, and usage terms. Start here for discovery.
Example Response
{
"name": "Silicon Analysts Data API",
"version": "1",
"endpoints": [ ... ],
"usage": { "tracking": "All requests logged" }
}/api/v1/acceleratorsManufacturing cost data for 13 AI accelerators: NVIDIA H100, H200, B100, B200, GB200, AMD MI300X, MI355X, Intel Gaudi 3, Google TPU v5p, AWS Trainium 2, Microsoft Maia 100, Meta MTIA v2. Includes logic die, HBM, packaging, and test costs.
Query Parameters
vendorFilter by vendor (case-insensitive)?vendor=NVIDIAchipFilter by chip name (partial match, case-insensitive)?chip=H100fieldsReturn only specified fields (comma-separated)?fields=chip,estMfgCostUsdExample Response
{
"success": true,
"data": [{
"chip": "NVIDIA H100 SXM5",
"vendor": "NVIDIA",
"processNode": "TSMC 4N",
"estMfgCostUsd": 3320,
"estSellPriceUsd": 32500,
"chipGrossMarginPct": 87.5,
"costBreakdown": {
"logicDieCostUsd": 300,
"hbmCostUsd": 1350,
"packagingCostUsd": 750,
"testAssemblyCostUsd": 920
},
...
}],
"meta": { "count": 13, "source": "Silicon Analysts" }
}/api/v1/hbmFull HBM market dataset with 9 data tables: accelerator specs, HBM generation specs, vendor market share, spot prices, leading indicators, qualification feed, revenue forecast, supplier revenue, and validation checks.
Example Response
{
"success": true,
"data": {
"accelerators": [ ... ],
"specs": [ ... ],
"marketShare": [ ... ],
"spotPrices": [ ... ],
"leadingIndicators": [ ... ],
"qualificationFeed": [ ... ],
"revenueForecast": [ ... ],
"supplierRevenue": [ ... ],
"validationChecks": [ ... ]
},
"meta": { "source": "Silicon Analysts", "apiVersion": "1" }
}/api/v1/articlesMetadata for 30+ semiconductor industry articles. Includes title, date, description, executive insight, key takeaways, cited sources, and full URL.
Query Parameters
limitReturn only the N most recent articles?limit=5qSearch in title and description (case-insensitive)?q=nvidiaExample Response
{
"success": true,
"data": [{
"slug": "nvidia-gpu-prices-double-...",
"title": "Nvidia GPU Prices Double as AI Demand...",
"date": "2026-01-23",
"description": "Analysis of Jensen Huang's comments...",
"insight": "The spillover of AI-driven demand...",
"keyTakeaways": ["...", "..."],
"url": "https://siliconanalysts.com/analysis/...",
"sources": [{ "publisher": "...", "title": "..." }]
}],
"meta": { "count": 30, "source": "Silicon Analysts" }
}/api/v1/calculate/chip-costCalculate manufacturing cost breakdown for a custom chip design. Provide die dimensions and process node to get yield analysis, cost per die, packaging, and ASP estimates.
Request Body (JSON)
dieWidthnumber *Die width in mmdieHeightnumber *Die height in mmprocessNodestring *Process node (e.g., "7nm", "5nm", "28nm")waferCostnumberOverride wafer cost in USDpackagingTypestringPackaging type (e.g., "Flip-Chip BGA")packagingCostnumberOverride packaging cost in USDhbmStacksnumberNumber of HBM stacks (0-8)hbmCostnumberOverride per-stack HBM cost in USDtestCostnumberOverride test cost in USDvolumenumberAnnual production volumemarginTargetnumberTarget gross margin (0-1)Example Response
{
"success": true,
"data": {
"dieArea": 814,
"processNode": "5nm",
"waferCost": 16000,
"gdpw": 69,
"ndpw": 54,
"yieldRate": 0.78,
"costPerDie": 296.30,
"packagingCost": 750,
"hbmCost": 2700,
"testCost": 150,
"totalManufacturingCost": 3896.30,
"suggestedASP": 6493.83,
"marginTarget": 0.40,
"volume": 100000
}
}Authentication & Rate Limits
Read endpoints (GET) are freely accessible without an API key, subject to rate limits of 100 requests/hour by IP. The calculate endpoint (POST) allows 10 requests/day without auth.
Generate an API key below for higher rate limits (1,000 req/hr) and usage tracking. Include your key in requests via header:
# API key via X-API-Key header
curl -H "X-API-Key: sa_live_abc123..." https://siliconanalysts.com/api/v1/accelerators
# Or via Authorization header
curl -H "Authorization: Bearer sa_live_abc123..." https://siliconanalysts.com/api/v1/hbm| Tier | GET Endpoints | POST Calculate | Auth |
|---|---|---|---|
| Free (no key) | 100 req/hr | 10 req/day | None required |
| Free (with key) | 1,000 req/hr | 1,000 req/hr | X-API-Key header |
Your API Keys
Sign in to generate API keys for higher rate limits and usage tracking.
API Playground
Try any endpoint live. No authentication required for read endpoints.
Try endpoints with live data — no API key required for public endpoints.
Need higher rate limits, webhook alerts, or bulk data access?
Pro API access is coming soon — higher rate limits, webhook alerts for price movements, and priority support.
AI Agent Discovery
Silicon Analysts is optimized for discovery by AI agents and LLM-powered search.
/llms.txt — Machine-readable site description for LLM agents/api/v1 — JSON API manifest for programmatic endpoint discovery/sitemap.xml — Full sitemap with all tools and articlesData Sources
Cost estimates are derived from Epoch AI Monte Carlo models, Raymond James semiconductor research, TrendForce quarterly reports, and SemiAnalysis teardown data.
HBM market data is sourced from SK Hynix, Samsung, and Micron investor relations, TrendForce, and proprietary supply chain tracking models.
Estimates are directional and may vary ±15-20% from actual manufacturing costs. For full terms see Terms & Data Provenance.
Explore Interactive Tools
Use our interactive tools to model chip costs, compare accelerators, and analyze markets