API Reference
Design systems
Read design system metadata via the Humic API.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Read design system metadata via the Humic API.
curl https://humic.dev/api/v1/design-system \
-H "Authorization: Bearer sk_live_your_key"
{
"data": {
"name": "Brand",
"slug": "brand",
"description": null,
"tokenCount": 42,
"scaleCount": 5,
"lastUpdated": "2025-03-15T14:30:00Z"
}
}
curl https://humic.dev/api/v1/design-systems \
-H "Authorization: Bearer sk_live_your_key"
{
"data": {
"designSystems": [
{
"id": "d1a2b3c4-...",
"name": "Brand",
"slug": "brand"
},
{
"id": "e5f6g7h8-...",
"name": "Marketing",
"slug": "marketing"
}
]
}
}
