Silicon Analysts
Loading...
API

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

MethodEndpoint
GET/api/v1
GET/api/v1/accelerators
GET/api/v1/hbm
GET/api/v1/articles
POST/api/v1/calculate/chip-cost
GET/api/v1

Lists 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" }
}
Cache: 1 hour · Rate limit: 100 req/hr (free) · 1,000 req/hr (with API key)
GET/api/v1/accelerators

Manufacturing 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=NVIDIA
chipFilter by chip name (partial match, case-insensitive)?chip=H100
fieldsReturn only specified fields (comma-separated)?fields=chip,estMfgCostUsd

Example 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" }
}
Cache: 1 hour · Rate limit: 100 req/hr (free) · 1,000 req/hr (with API key)
GET/api/v1/hbm

Full 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" }
}
Cache: 5 minutes · Rate limit: 100 req/hr (free) · 1,000 req/hr (with API key)
GET/api/v1/articles

Metadata 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=5
qSearch in title and description (case-insensitive)?q=nvidia

Example 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" }
}
Cache: 1 hour · Rate limit: 100 req/hr (free) · 1,000 req/hr (with API key)
POST/api/v1/calculate/chip-cost

Calculate 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 mm
dieHeightnumber *Die height in mm
processNodestring *Process node (e.g., "7nm", "5nm", "28nm")
waferCostnumberOverride wafer cost in USD
packagingTypestringPackaging type (e.g., "Flip-Chip BGA")
packagingCostnumberOverride packaging cost in USD
hbmStacksnumberNumber of HBM stacks (0-8)
hbmCostnumberOverride per-stack HBM cost in USD
testCostnumberOverride test cost in USD
volumenumberAnnual production volume
marginTargetnumberTarget 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
  }
}
Cache: No cache · Rate limit: 10 req/day (free, by IP) · 1,000 req/hr (with API key)

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
TierGET EndpointsPOST CalculateAuth
Free (no key)100 req/hr10 req/dayNone required
Free (with key)1,000 req/hr1,000 req/hrX-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.

Join the Pro Waitlist →

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
JSON-LD structured data on every page (Dataset, SoftwareApplication, Article)
/sitemap.xml — Full sitemap with all tools and articles

Data 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