Cara.app Art Dataset — 123,056 Original Images from Top Community Posts (120 GB)
Yuskeu

folder images (123056 files)
file1776067868148-qqwlvcpc33.jpg 3.04MB
file1776063471518-614yj6xw49k.jpg 2.26MB
file1776063471449-4ucxxjdp3c.jpg 2.26MB
file1776050973279-u23fswt7sun.jpg 612.58kB
file1776050973241-8wtw3uoyx6w.jpg 612.58kB
file1776045074205-as1c5l3k03r.jpg 319.21kB
file1776045074186-9fjw5r7ewg.jpg 319.21kB
file1776042479640-vyckb6qenwi.jpg 169.71kB
file1776039438309-qiqz5pfvev.jpg 571.59kB
file1776039438290-cfjgnao2xjn.jpg 571.59kB
file1776038273787-3y9ys6d9m2l.jpg 1.13MB
file1776038273779-k3lnuj9dv6p.jpg 1.13MB
file1776036207449-rfcu395yuv.jpg 2.64MB
file1776036207396-v0ejyfnd3s.jpg 2.64MB
file1776031422430-c53a67rx8s.jpg 784.84kB
file1776031422424-waojiw2ivx.jpg 1.09MB
file1776031422422-ehi3hlt5jl5.jpg 1.45MB
file1776031422416-gtnjhalb84f.jpg 1.06MB
file1776031422406-ilf8ym2424k.jpg 1.06MB
file1776015971639-j382irqb7t.jpg 348.14kB
file1776015971627-x66ksne1c5s.jpg 631.08kB
file1776014530125-9vt6w2cb4d4.jpg 561.56kB
file1776014530106-tlli820qlki.jpg 354.55kB
file1776014179201-zekmngm1ce.jpg 117.18kB
file1776014179197-3j7qgn2nb2k.jpg 117.18kB
file1776009838575-eeh1v91qz3o.jpg 1.11MB
file1776009838574-aqpcjdqfs4w.jpg 1.11MB
file1776002111502-k5hmbxznd5.jpg 232.77kB
file1776002111466-o3xc7mv4q0k.jpg 434.44kB
file1776000951542-0ttdqbtofdp.jpg 2.69MB
file1776000951532-7jz3ryszrx.jpg 989.68kB
file1775995957796-6noswn7ipaf.jpg 648.03kB
file1775995957795-wqalmuhzb2j.jpg 465.12kB
file1775979815402-juqqp9554hp.jpg 853.59kB
file1775979815392-tj5w80tpahq.jpg 685.51kB
file1775979050444-ph6ocfqsbq.jpg 396.68kB
file1775979050440-26nyx7vimvw.jpg 396.68kB
file1775978397472-cionrbgd58k.jpg 447.65kB
file1775978397439-x5ceed0993r.jpg 3.00MB
file1775977996992-v5dijsdvyv.jpg 2.98MB
file1775977996971-pfi4001ea6s.jpg 2.98MB
file1775976966612-y4zouqwedx.jpg 805.16kB
file1775976966589-xvmvzbknnlf.jpg 129.34kB
file1775968039495-jfw9f6p75ln.gif 8.15MB
file1775967884548-rtscj75yk7p.gif 9.87MB
file1775965702592-400rciuc5dw.jpg 1.96MB
file1775965702571-k2y53z37zuk.jpg 1.96MB
file1775941895864-bt4zspbxi68.jpg 176.34kB
file1775941895849-arhjp3v30gl.jpg 176.34kB
Too many files! Click here to view them all.
Type: Dataset

Metadata:
@article{,
title= {Cara.app Art Dataset — 123,056 Original Images from Top Community Posts (120 GB)},
journal= {},
author= {Yuskeu},
year= {},
url= {},
abstract= {# **companion metadata database**: https://academictorrents.com/details/cab03c1b0cbc8ed99a0495d491d281d80517146a

This archive contains 123,056 original artwork image files (~120 GB, JPG/PNG/GIF/WEBP) belonging to the 52,047 most-liked posts (over 150 likes each) on Cara.app, an art-sharing and portfolio platform popular among professional and hobbyist illustrators. Images were collected in August 2026 from Cara's public content-delivery network and are provided at original uploaded resolution. Each file is uniquely named by its CDN path and maps one-to-one to rows in the companion metadata database (`subset_dataset.db`, distributed separately) via its filename. 

The **companion database**: https://academictorrents.com/details/cab03c1b0cbc8ed99a0495d491d281d80517146a (Cara.app Art Dataset — Full Metadata Database for 52,045 Top Posts with 674k Comment Trees (SQLite)) provides per-image carousel ordering, cover flags, pixel dimensions where recoverable, platform AI-generation flags, full post text and engagement metrics, complete comment threads, and author profiles. Intended uses include computer-vision research, art-market and style-trend analysis, AI-vs-human classification studies, and digital-arts historiography.

---

## How to link image files to metadata (filename lookup)

Every file in the `images` folder maps to exactly one row in the `images` table by its **basename**, which carries `post_id` — from there you reach the full post and author.

**SQL (any sqlite3 client):**
```sql
-- all metadata for one downloaded file:
SELECT i.*, p.title, p.content, p.created_at, p.like_counter,
       u.name AS author_name, u.slug AS author_slug, u.follower_counter
FROM images i
JOIN posts p ON p.id = i.post_id
JOIN users u ON u.id = p.author_id
WHERE i.cdn_url LIKE '%/' || 'tunamelt-xVmO9g6D26ViDKkmTZnOz-7d865f66-b294-4e12-a0fd-8099137f8467.jpg';

-- build the complete file→post→author manifest yourself:
SELECT substr(i.cdn_url, length('https://cdn.cara.app/')+1) AS filename,
       i.post_id, p.created_at, p.like_counter, u.slug AS author_slug,
       u.name AS author_name, i.is_cover, i.ord, i.width, i.height
FROM images i JOIN posts p ON p.id=i.post_id JOIN users u ON u.id=p.author_id;
```

**Python (3 lines):**
```python
import sqlite3
db = sqlite3.connect("subset_dataset.db")
fn = "tunamelt-xVmO9g6D26ViDKkmTZnOz-7d865f66-b294-4e12-a0fd-8099137f8467.jpg"
img  = db.execute("SELECT * FROM images WHERE cdn_url LIKE '%'||?", ("%/"+fn,)).fetchone()
post = db.execute("SELECT * FROM posts WHERE id=?", (img[1],)).fetchone()
```
(`images.post_id` is column 2; `posts.author_id` is column 2; `users.id` is column 1.)

The same join works for comments: `comments.post_id → posts.id`.},
keywords= {machine learning, Computer Vision, cara.app, art dataset, digital art, illustration, image dataset, generative AI detection, artists, social platform},
terms= {},
license= {},
superseded= {}
}

Citation:
Yuskeu. (2026). Cara.app Art Dataset — 123,056 Original Images from Top Community Posts (120 GB) [Data set]. Academic Torrents. https://academictorrents.com/details/77d4e2a65852258420a8e47bf29c8f3a5043a446
No stats to report yet.

Send Feedback