openclipart.org APIopenclipart.org ↗
Access 185,000+ free clipart items from OpenClipart. Search by keyword, browse tags, retrieve artist profiles, and fetch download URLs via a clean REST API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/b3871a53-4087-4738-bba4-49e32edf63c0/get_engagement_stats' \ -H 'X-API-Key: $PARSE_API_KEY'
Extract site-wide statistics and recent artist activity from the homepage and Atom feed. Includes total clipart count, total artist count, daily activity metrics, and latest uploads.
No input parameters required.
{
"type": "object",
"fields": {
"site_stats": "object containing total_clipart, total_artists, clipart_today, artists_today counts",
"recent_activity_proxy": "object containing sample_size, unique_artists_in_latest_feed count, and latest_uploads array"
},
"sample": {
"data": {
"site_stats": {
"artists_today": 1,
"clipart_today": 2,
"total_artists": 8236,
"total_clipart": 185160
},
"recent_activity_proxy": {
"sample_size": 32,
"latest_uploads": [
{
"id": "tag:openclipart.org,2026-05-14:detail/355675",
"title": "Chinese Finger Trap",
"author": "j4p4n",
"updated": "2026-05-14T07:24:46Z"
}
],
"unique_artists_in_latest_feed": 8
}
},
"status": "success"
}
}About the openclipart.org API
The OpenClipart API covers 7 endpoints for searching, browsing, and retrieving data from a library of 185,000+ free SVG clipart items created by 8,200+ artists. The search_clipart endpoint accepts a keyword query and returns paginated results with thumbnails and detail URLs. You can also retrieve full item metadata — including tags, love count, upload date, and download URLs — through get_clipart_detail, or pull an artist's contribution stats and recent uploads via get_artist_profile.
Searching and Browsing Clipart
The search_clipart endpoint matches a required query string against tags and returns paginated item summaries. Each item in the items array includes an id, slug, title, thumbnail, and detail_url. The total_results and total_pages fields let you build pagination logic. For exact-match tag browsing, get_clipart_by_tag accepts a tag parameter and returns an identical response structure filtered to items carrying that tag.
Item Details and Downloads
get_clipart_detail accepts a numeric id string — obtainable from any search or tag result — and returns a full record including title, author, upload_date, description, tags array, love_count, and a downloads object that maps format keys (such as svg) to direct download URLs. The optional slug parameter can be supplied for URL construction but is not required for lookup. get_random_clipart returns the same full-detail shape for a randomly selected item, useful for discovery or sampling.
Artist Profiles and Site Statistics
get_artist_profile takes a username and returns member_since year, total_clipart uploaded, total_loves_received, and a latest_clipart array of recent uploads with thumbnails. get_engagement_stats pulls site-wide counts — total_clipart, total_artists, clipart_today, artists_today — plus a recent_activity_proxy object with a latest_uploads array and a count of unique_artists_in_latest_feed.
API Version Endpoint
get_api_version queries the official OpenClipart.org API version endpoint and returns a data object containing the name and version string, along with a status code and success boolean. This is useful for health checks or confirming the upstream service is responsive.
- Build a clipart search UI that queries
search_clipartby keyword and displays thumbnail grids with direct SVG download links. - Generate nightly reports on site growth using
get_engagement_statsfields liketotal_clipart,total_artists, andclipart_today. - Populate a tag-based clipart browser using
get_clipart_by_tagwith pagination acrosstotal_pages. - Build artist spotlight pages using
get_artist_profileto displaytotal_loves_received,member_since, and recent uploads. - Implement a 'clipart of the day' widget using
get_random_clipartto fetch a full detail record on each request. - Index clipart metadata for a full-text search engine by walking pages of
search_clipartresults and expanding each viaget_clipart_detail. - Track which tags have the most items over time by recording
total_resultsfrom repeatedget_clipart_by_tagcalls.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does OpenClipart have an official developer API?+
get_api_version endpoint in this API queries that service directly and returns the version string and status.What does `get_clipart_detail` return beyond what search results include?+
search_clipart and get_clipart_by_tag return summary fields: id, slug, title, thumbnail, and detail_url. get_clipart_detail expands this to include tags, author, upload_date, description, love_count, and the downloads object with format-keyed download URLs — including the direct SVG link.Can I retrieve a specific artist's full upload history or filter by date?+
get_artist_profile returns total_clipart count and a latest_clipart array of recent uploads, but it does not paginate through an artist's full upload history or accept date range filters. You can fork this API on Parse and revise it to add a paginated artist-uploads endpoint.Does the API return clipart collections or sets grouped by theme?+
search_clipart and by individual tag via get_clipart_by_tag, but there is no endpoint for named collections or curated sets. You can fork this API on Parse and revise it to add a collections endpoint if OpenClipart exposes that grouping.How does pagination work across search and tag endpoints?+
search_clipart and get_clipart_by_tag accept an optional page integer. The response includes current_page, total_pages, and total_results, so you can iterate through all pages programmatically by incrementing page until it reaches total_pages.