A free, no-frills API for developers. Convert files, generate hashes, encode URLs, and more - all programmatically. 1,000 requests per day, no credit card, no surprise bills.
# Convert SVG to OpenCart .tpl format curl -X POST https://svgtotpl.com/api/v1/svg-to-tpl \ -H "X-API-Key: tpl_yourkeyhere" \ -H "Content-Type: application/json" \ -d '{"svg":"<svg width=\"100\">...</svg>","class":"logo"}' # Response: { "ok": true, "tpl": "<svg width=\"100\" class=\"logo\" role=\"img\">...</svg>", "format": "svg", "bytes": 130 }
X-API-Key: tpl_xxx and you're authenticated. No OAuth dance, no signed requests.X-RateLimit-* headers on every response. Know your remaining quota and reset time without polling.message field telling you what went wrong and what to fix. No cryptic codes.No credit card. No email confirmation. Just sign up, copy your key, start calling.
Visit /api/signup - takes 10 seconds. Your account and a fresh API key are created instantly.
Click the Copy button on your dashboard. Treat it like a password - don't commit it to git. Every key starts with tpl_.
Send an HTTP POST with your key in the X-API-Key header. The docs page has full code samples in cURL, PHP, JavaScript, Python, Ruby, and more.