TSWG Premium SVG Icons API gives platforms, marketplaces, SaaS products, creator tools, dashboards, and AI systems access to a commercial SVG catalog. Metadata is public; SVG delivery requires a paid API key.
These endpoints expose metadata only and do not require an API key.
GET /tswg-svg-icon-api.php?action=list GET /tswg-svg-icon-api.php?action=categories GET /tswg-svg-icon-api.php?action=list&q=coach GET /tswg-svg-icon-api.php?action=list&category=AI%20Automation
Use a paid API key to request the actual SVG payload.
GET /tswg-svg-icon-api.php?slug=ai-agent-system Header: X-TSWG-ICON-KEY: YOUR_PAID_API_KEY
Alternative query-string key support exists, but header authentication is cleaner for production usage.
{
"status": "success",
"slug": "ai-agent-system",
"label": "AI Agent System",
"category": "AI Automation",
"license_tier": "paid_api",
"monthly_limit": 10000,
"used_this_month": 42,
"remaining_this_month": 9958,
"svg": "<svg ...></svg>"
}
| Status | Meaning |
|---|---|
401 | API key required for SVG delivery. |
403 | Invalid, inactive, paused, or revoked API key. |
404 | Requested icon slug was not found. |
429 | Monthly SVG API limit reached. |
curl -H "X-TSWG-ICON-KEY: YOUR_PAID_API_KEY" \ "https://thesurestwayguides.com/tswg-svg-icon-api.php?slug=ai-agent-system"
const res = await fetch("/tswg-svg-icon-api.php?slug=ai-agent-system", {
headers: { "X-TSWG-ICON-KEY": "YOUR_PAID_API_KEY" }
});
const icon = await res.json();
if (icon.status === "success") {
document.querySelector("#icon").innerHTML = icon.svg;
}
| Slug | Label | Category |
|---|---|---|
ai-agent-system |
AI Agent System | AI Automation |
ai-content-engine |
AI Content Engine | AI Automation |
ai-research-agent |
AI Research Agent | AI Automation |
ai-workflow-board |
AI Workflow Board | AI Automation |
chatbot-flow-kit |
Chatbot Flow Kit | AI Automation |
content-research-agent |
Content Research Agent | AI Automation |
follow-up-automation |
Follow-up Automation | AI Automation |
image-generator-agent |
Image Generator Agent | AI Automation |
image-to-video-agent |
Image To Video Agent | AI Automation |
lead-qualification-agent |
Lead Qualification Agent | AI Automation |
multi-agent-orchestrator |
Multi Agent Orchestrator | AI Automation |
prompt-engineering-pack |
Prompt Engineering Pack | AI Automation |
sales-followup-bot |
Sales Followup Bot | AI Automation |
smart-prompt-vault |
Smart Prompt Vault | AI Automation |
support-escalation-bot |
Support Escalation Bot | AI Automation |
text-to-video-agent |
Text To Video Agent | AI Automation |
voice-clone-agent |
Voice Clone Agent | AI Automation |
workflow-automation |
Workflow Automation | AI Automation |