Clipart API

Search and download the whole CC0 library as JSON - free key, 500 requests a day, no credit card.

Your API key

Sign up free (email only) to get a key with 500 requests/day.

Sign Up Login

Endpoints

GET /api/clipart/search

Full-text search over the catalog. Parameters: q (query), category (slug), license (cc0), page. 30 results per page, popularity-ordered.

curl
curl "https://clipart.free/api/clipart/search?q=cat+silhouette&category=animals&key=YOUR_KEY"
Python
import requests

r = requests.get("https://clipart.free/api/clipart/search",
                 params={"q": "cat silhouette", "key": "YOUR_KEY"})
for item in r.json()["results"]:
    print(item["title"], item["svg_url"])
JavaScript
const r = await fetch("https://clipart.free/api/clipart/search?q=cat&key=YOUR_KEY");
const data = await r.json();
console.log(data.results.map(i => i.png_urls["800"]));

GET /api/clipart/<slug>/

Full metadata for one asset: title, tags, category, license + deed URL, creator, dimensions, dominant colors, and direct SVG/PNG file URLs.

curl "https://clipart.free/api/clipart/black-cat-silhouette-93012/?key=YOUR_KEY"

Usage rules

Need more than 500/day?

starter
$9/mo
5000 requests/day
Payments launching soon
pro
$29/mo
25000 requests/day
Payments launching soon
enterprise
$99/mo
100000 requests/day
Payments launching soon

Paid tiers are coming online shortly - until then, contact us if you need a higher limit and we'll sort you out. Contact Us

Rate this page
5.0/5 (0)

What could we improve? Your feedback helps us fix issues.