SCC Lookup¶
Search for any Draw Steel content by name, type, or SCC code.
API Documentation¶
The SCC Resolution API is a static JSON API that resolves Steel Compendium Classification (SCC) codes to website URLs and metadata.
Endpoints¶
All endpoints are relative to https://steelcompendium.io/api/v1/.
| Endpoint | Description |
|---|---|
index.json |
API metadata and discovery |
scc.json |
Full registry -- all entries and aliases |
types.json |
Entries grouped by content type |
resolve/{source}/{type}/{item}.json |
Single entry lookup |
Single Entry Lookup¶
Resolve an SCC code to its website URL and metadata:
GET /api/v1/resolve/mcdm.heroes.v1/class/fury.json
{
"scc": "mcdm.heroes.v1/class/fury",
"url": "https://steelcompendium.io/v2/Browse/class/fury/",
"name": "Fury",
"type": "class",
"source": "mcdm.heroes.v1"
}
Bulk Registry¶
Download the full registry for offline use or indexing:
GET /api/v1/scc.json
Returns all entries sorted by SCC code, plus alias mappings.
Usage Example¶
// Resolve a single SCC code
fetch("https://steelcompendium.io/api/v1/resolve/mcdm.heroes.v1/class/fury.json")
.then(r => r.json())
.then(entry => window.open(entry.url));