TSThe Surest Way Guides
Paid SVG Icons API · Developer Docs

Integrate premium SVG icons into your platform with paid API access.

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.

174Paid API-ready assets
15Commercial categories
401No key = blocked SVG delivery
429Monthly limit enforced

Public catalog endpoints

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

Protected SVG delivery

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.

Success response

{
  "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>"
}

Error responses

StatusMeaning
401API key required for SVG delivery.
403Invalid, inactive, paused, or revoked API key.
404Requested icon slug was not found.
429Monthly SVG API limit reached.

Example cURL

curl -H "X-TSWG-ICON-KEY: YOUR_PAID_API_KEY" \
"https://thesurestwayguides.com/tswg-svg-icon-api.php?slug=ai-agent-system"

Example JavaScript

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;
}

Categories

Sample assets

SlugLabelCategory
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
Commercial usage note: SVG delivery is intended for paid/API customers. Public catalog metadata helps buyers discover assets, but production SVG rendering requires an active key and monthly usage allowance.