APIs Explorer Authentication Use Cases Compare Pricing Documentation Get API Key →
API v1  ·  Live

One API.
Every CloviTek AI Tool.

Access QR generation, AI image creation, PDF conversion, SEO analysis, transcription, and 20+ other capabilities through a single authenticated REST API.

8 API categories 38 endpoints 1 Bearer token Lite from $9/mo
api.clovitek.com — cURL
# Generate a styled QR code POST https://api.clovitek.com/v1/qr/generate Authorization: Bearer ck_live_7xK9mN2pQr... Content-Type: application/json {   "data": "https://mysite.com",   "size": 512,   "style": "dots" } 200 OK · 47ms {   "url": "https://cdn.clovitek.com/qr/abc123.png",   "expires": "never",   "credits_used": 1 } $
0
Uptime SLA
0
Endpoints live
0
Median latency
0
Requests / month

Every CloviTek AI capability,
one token away

Eight categories, 38 total endpoints. One API key unlocks them all.

/v1/qr/

QR Generator API

Generate, style, and track QR codes. Custom colors, dot styles, embedded logos, and click analytics.

3 endpoints
/v1/image/

Image AI API

Generate images from prompts, apply style transfer, upscale low-res, remove backgrounds, and recolor assets.

5 endpoints
/v1/pdf/

PDF API

Convert HTML/URL to PDF, merge documents, compress, watermark, extract text, and split pages.

8 endpoints
/v1/seo/

SEO Analysis API

Audit URLs for technical SEO, run keyword density analysis, score pages, and get actionable recommendations.

4 endpoints
/v1/transcribe/

Transcription API

Convert audio and video files to text. Multi-language support, timestamps, and translation to English.

3 endpoints
/v1/cover/

Cover Gen API

AI-powered book, document, and course cover generation. Templates, custom styles, and batch generation.

4 endpoints
/v1/scan/

Scanner API

Security headers, SSL certificate, performance (Core Web Vitals), accessibility, and domain reputation scans.

5 endpoints
/v1/charts/

Charts API

Generate chart images from JSON data. Bar, line, pie, area, and scatter charts. PNG or SVG output.

6 endpoints

Try it in your language

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

Watch a request become a response

A real round-trip shape — request JSON in, structured JSON out. No keys, no setup.

POST /v1/qr/generate
idle
200 OK

Real calls. Real results.

Watch the request build up, hit the wire, and return a real result — three CloviTek AI APIs in three minutes.

POST /api/demo/scan LIVE
Ready
🛡️

Hit "Run Demo" to scan clovitek.com and see the real security report

POST /v1/charts/generate Sample
Ready
📊

Hit "Run Demo" to generate a bar chart from JSON data

POST /v1/qr/generate LIVE
Ready
🔲

Hit "Run Demo" to generate a live QR code right in your browser

One call, the whole pipeline

Every request flows through the same authenticated, rate-limited gateway to the right service — then straight back to you.

Your App

Bearer token + JSON payload

API Gateway

Auth, rate limits, routing

Service

QR · Image · PDF · SEO · more

Response

JSON + CDN asset URL

Simple Bearer auth,
tiered rate limits

One API key per account. Pass it as a Bearer token. Track usage in your dashboard.

How authentication works

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.

# All requests follow this pattern
Authorization: Bearer ck_live_xxxxxxxxxxxxxxxx

# Test with your sandbox key (no charges)
Authorization: Bearer ck_test_xxxxxxxxxxxxxxxx
  • Live and test keys — sandbox never hits production
  • Rotate keys instantly from your dashboard
  • Webhook support for async long-running operations
  • Usage dashboard and per-endpoint analytics included
Rate limits by plan
Plan Calls / day Endpoints SLA
Lite 100 3 endpoints
Pro 10,000 All endpoints 99.9%
Agency Unlimited All + white-label 99.9%
Rate limit headers are returned on every response: X-RateLimit-Remaining and X-RateLimit-Reset

Built for builders

From SaaS products to automation workflows — CloviAPI fits wherever you need programmable web capabilities.

SaaS builders

Embed QR generation, cover creation, and PDF export directly into your product. Ship features in hours, not weeks — no infrastructure required.

Agencies

White-label all CloviTek AI capabilities for clients under your own domain and brand. The Agency tier removes our branding from CDN URLs entirely.

Automation-platform workflows

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.

Internal tools

Run SEO audits, batch-convert PDFs, transcribe meeting recordings, and generate reports directly from your internal dashboards and admin panels.

How CloviAPI compares

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.

Start at $9/mo. Scale when ready.

Lite from $9/mo. Upgrade any time. Cancel any time.

Lite
$9/mo

Annual $90 — lowest tier. Explore the full API affordably.


  • 100 API calls per day
  • 3 endpoints (QR, Scanner, PDF basic)
  • Sandbox test key included
  • No SLA guarantee
  • No webhook support
  • No white-label
Get Lite Key
Agency
$99/mo

Unlimited usage and white-label delivery for agencies and platforms.


  • Unlimited API calls
  • All 38 endpoints
  • White-label CDN URLs
  • Dedicated rate limits
  • Priority phone + Slack support
  • Custom SLA available
Get Agency Key

All plans include a live usage dashboard. 14-day money-back guarantee on paid tiers.

Questions, answered

No. One Bearer token unlocks all 8 categories and 38 endpoints. Generate a key once and call QR, Image, PDF, SEO, transcription, covers, scanning, and charts with the same credential.
Yes — the entry tier is Lite at $9/mo (annual $90). There is no free tier, but Lite gives you a monthly credit allowance across every endpoint so you can build and test affordably before upgrading. Higher tiers raise limits and add white-label delivery.
Every response returns your remaining credits, and the gateway enforces per-plan rate limits with clear 429 signaling and retry headers. Usage is visible in real time on your dashboard.
Clean, predictable JSON. Asset-producing endpoints (QR, image, PDF, covers, charts) return a hosted CDN URL plus metadata, so you never have to handle raw binary payloads unless you want to.
Yes. The Agency tier supports white-label delivery so you can resell CloviTek AI capabilities under your own brand and domain, with branded CDN URLs for generated assets.