Access QR generation, AI image creation, PDF conversion, SEO analysis, transcription, and 20+ other capabilities through a single authenticated REST API.
Available APIs
Eight categories, 38 total endpoints. One API key unlocks them all.
Generate, style, and track QR codes. Custom colors, dot styles, embedded logos, and click analytics.
Generate images from prompts, apply style transfer, upscale low-res, remove backgrounds, and recolor assets.
Convert HTML/URL to PDF, merge documents, compress, watermark, extract text, and split pages.
Audit URLs for technical SEO, run keyword density analysis, score pages, and get actionable recommendations.
Convert audio and video files to text. Multi-language support, timestamps, and translation to English.
AI-powered book, document, and course cover generation. Templates, custom styles, and batch generation.
Security headers, SSL certificate, performance (Core Web Vitals), accessibility, and domain reputation scans.
Generate chart images from JSON data. Bar, line, pie, area, and scatter charts. PNG or SVG output.
API Explorer
Production-ready code snippets for every popular stack. Copy, paste, ship.
# Generate a QR code curl -X POST https://api.clovitek.com/v1/qr/generate \ -H "Authorization: Bearer ck_live_7xK9mN2pQr..." \ -H "Content-Type: application/json" \ -d '{ "data": "https://mysite.com", "size": 512, "style": "dots", "foreground": "#06B6D4", "background": "#0a0a0f" }' # Response 200 OK { "url": "https://cdn.clovitek.com/qr/abc123.png", "expires": "never", "width": 512, "height": 512, "credits_used": 1, "credits_remaining": 9842 }
import requests API_KEY = "ck_live_7xK9mN2pQr..." BASE_URL = "https://api.clovitek.com/v1" headers = { "Authorization": f"Bearer {API_KEY}", "Content-Type": "application/json", } # Generate QR code response = requests.post( f"{BASE_URL}/qr/generate", headers=headers, json={ "data": "https://mysite.com", "size": 512, "style": "dots", } ) data = response.json() print(data["url"]) # https://cdn.clovitek.com/qr/abc123.png
const API_KEY = "ck_live_7xK9mN2pQr..."; const BASE_URL = "https://api.clovitek.com/v1"; // Generate a QR code async function generateQR(url) { const res = await fetch(`${BASE_URL}/qr/generate`, { method: "POST", headers: { "Authorization": `Bearer ${API_KEY}`, "Content-Type": "application/json", }, body: JSON.stringify({ data: url, size: 512, style: "dots", }), }); const data = await res.json(); return data.url; } generateQR("https://mysite.com") .then(url => console.log(url)); // https://cdn.clovitek.com/qr/abc123.png
<?php $apiKey = 'ck_live_7xK9mN2pQr...'; $baseUrl = 'https://api.clovitek.com/v1'; // Generate a QR code $payload = json_encode([ 'data' => 'https://mysite.com', 'size' => 512, 'style' => 'dots', ]); $ch = curl_init("$baseUrl/qr/generate"); curl_setopt_array($ch, [ CURLOPT_POST => true, CURLOPT_POSTFIELDS => $payload, CURLOPT_RETURNTRANSFER => true, CURLOPT_HTTPHEADER => [ "Authorization: Bearer $apiKey", 'Content-Type: application/json', ], ]); $data = json_decode(curl_exec($ch), true); echo $data['url']; // https://cdn.clovitek.com/qr/abc123.png
Live Demo
A real round-trip shape — request JSON in, structured JSON out. No keys, no setup.
See It In Action
Watch the request build up, hit the wire, and return a real result — three CloviTek AI APIs in three minutes.
Hit "Run Demo" to scan clovitek.com and see the real security report
Hit "Run Demo" to generate a bar chart from JSON data
Hit "Run Demo" to generate a live QR code right in your browser
How it works
Every request flows through the same authenticated, rate-limited gateway to the right service — then straight back to you.
Bearer token + JSON payload
Auth, rate limits, routing
QR · Image · PDF · SEO · more
JSON + CDN asset URL
Authentication
One API key per account. Pass it as a Bearer token. Track usage in your dashboard.
Every request must include your API key as a Bearer token in the
Authorization
header. Keys are scoped to your account and carry your rate limit tier.
| Plan | Calls / day | Endpoints | SLA |
|---|---|---|---|
| Lite | 100 | 3 endpoints | — |
| Pro | 10,000 | All endpoints | 99.9% |
| Agency | Unlimited | All + white-label | 99.9% |
X-RateLimit-Remaining and
X-RateLimit-Reset
Use Cases
From SaaS products to automation workflows — CloviAPI fits wherever you need programmable web capabilities.
Embed QR generation, cover creation, and PDF export directly into your product. Ship features in hours, not weeks — no infrastructure required.
White-label all CloviTek AI capabilities for clients under your own domain and brand. The Agency tier removes our branding from CDN URLs entirely.
Use CloviAPI as an HTTP node in your automation stack. QR codes on form submission, PDF generation on a database trigger, SEO audits on a schedule.
Run SEO audits, batch-convert PDFs, transcribe meeting recordings, and generate reports directly from your internal dashboards and admin panels.
Comparison
Honest, feature-by-feature against general-purpose automation platforms — no asterisks.
| Capability | CloviAPI | Automation Tool A | Automation Tool B | Automation Tool C |
|---|---|---|---|---|
| Integrations / connectors | ~250 curated | 7,000+ | 1,000+ | 600+ |
| CloviTek AI-native capabilities (QR, PDF, SEO, transcription) | ✓ auto-wired | — | — | — |
| Direct REST API (no workflow builder needed) | ✓ | Partial | Partial | Partial |
| Visual no-code builder | — | ✓ | ✓ | ✓ |
| Self-hosted option | — | — | Partial | Enterprise |
| AI-native steps (image gen, cover gen, LLM) | ✓ | Partial | Partial | — |
| Per-request execution model | ✓ single call | Task-based | Operation-based | Workflow-based |
| Entry tier | 100 calls/day | 100 tasks/mo | 1,000 ops/mo | 14-day trial |
| Starting price | Lite $9/mo, $29/mo Pro | $0 free, paid from ~$20/mo | $0 free, paid from ~$9/mo | $0 trial, paid from ~$480/mo |
Comparison based on publicly available information as of June 2026. CloviAPI is purpose-built to call CloviTek AI capabilities directly — not a general workflow engine.
Pricing
Lite from $9/mo. Upgrade any time. Cancel any time.
Annual $90 — lowest tier. Explore the full API affordably.
Full access for indie developers and small teams shipping products.
Unlimited usage and white-label delivery for agencies and platforms.
All plans include a live usage dashboard. 14-day money-back guarantee on paid tiers.
FAQ