Extract, categorize, filter, and copy tags from popular booru sites — fast, accurate, and delightful.
Features · Supported Sites · API · Getting Started · Desktop & Android · FAQ
Designed for creators, curators, and prompt engineers who need reliable tags quickly. Paste a post URL, get clean, categorized tags and a preview — ready to copy into your workflow.
- Real‑world resilient: Handles site quirks, timeouts, referers (Pixiv), and fallback flows.
- History: Optional local history for extractions and image metadata.
- Privacy‑aware: No analytics; data stays on your device (server proxy only fetches, doesn’t store).
The extractor currently supports these sites and post formats:
Site | Status |
---|---|
Danbooru | Supported |
Safebooru (Donmai) | Supported |
Hijiribe (Donmai) | Supported |
Safebooru (Org) | Supported |
Gelbooru | Supported |
Rule34 | Supported |
TBIB | Supported |
Scatbooru | Supported |
Garycbooru | Supported |
e621 | Supported |
AIBooru | Supported |
Yande.re | Supported |
Konachan | Supported |
Anime‑Pictures | Supported |
Zerochan | Supported |
E‑Shuushuu | Supported |
Pixiv | Supported (JSON/pximg fallbacks) |
Fur Affinity | Supported |
Tip: You can enable a similarity fallback for some unsupported
donmai.us
subdomains in settings.
graph LR;
A[Browser UI] -->|POST extract| B[Next API];
B -->|Fetch HTML with UA and Referer| C[Target Site];
B -->|Extract tags, image, title| D[JSON Response];
A -->|GET image proxy| B;
B -->|Stream media with cache| A;
Base URL: https://booruprompt.vercel.app/api/fetch-booru
- Endpoint:
/api/fetch-booru
- Method:
POST
- Headers:
Content-Type: application/json
- Body:
{ "targetUrl": "https://safebooru.org/index.php?page=post&s=view&id=12345" }
- Success 200:
{ "siteName": "Gelbooru", "tags": { "general": ["1girl", "smile"], "character": ["..." ] }, "imageUrl": "https://...jpg", "title": "..." }
- Errors:
400 | 422 | 502 | 504
with{ error, status }
message.
- Endpoint:
/api/fetch-booru?imageUrl=...
(URL‑encode the value) - Returns raw image/video with
Content-Type
andCache-Control
preserved.
Notes:
- Uses a mainstream browser User‑Agent and sets
Referer
fori.pximg.net
(Pixiv). - Request timeout: 25s.
# POST: extract page
curl -X POST "https://booruprompt.vercel.app/api/fetch-booru" \
-H "Content-Type: application/json" \
-d '{"targetUrl":"https://gelbooru.com/index.php?page=post&s=view&id=123"}'
# GET: proxy image
curl "https://booruprompt.vercel.app/api/fetch-booru?imageUrl=https%3A%2F%2Fe621.net%2Fdata%2F...jpg" -o out.jpg
Prerequisites: Node.js ≥ 18
git clone https://github.com/IRedDragonICY/booruprompt.git
cd booruprompt
npm install
npm run dev
Open http://localhost:3000
.
- Paste a booru post URL (e.g.
https://danbooru.donmai.us/posts/123456
). - Auto‑extract will run (or click Extract Manually).
- Toggle categories and optional blacklist.
- Copy tags.
Keyboard: Ctrl/Cmd + C
copies filtered tags when the extractor view is active.
This project ships with a Tauri app configuration and Android tooling.
# Dev (opens a desktop window pointing to localhost)
npm run tauri:dev
# Production build (bundles app installers)
npm run tauri:build
Static export helper used by Tauri:
npm run tauri:export
# One‑time setup
npm run android:init
# Run on device / emulator
npm run android:dev
# Build APK/AAB (debug)
npm run android:build
- Next.js 15 (App Router), React 19, TypeScript 5
- Tailwind CSS 4, Framer Motion 12
- Tauri 2 for desktop bundling
booru tag extractor, danbooru tags, gelbooru tags, e621 tags, pixiv tags, rule34 tags, booru prompt generator, copy booru tags, booru tag parser, tag categorization, booru proxy api, anime tags extractor, ai prompt tags, image metadata prompt extractor
- Why do some pages fail? Some sites require login, use anti‑bot protections (e.g., Cloudflare), or return empty HTML via proxies.
- Is my data stored? No server‑side storage. Optional local history is stored in your browser only.
- Pixiv images don’t load? The proxy sets a Pixiv
Referer
and prefersi.pximg.net
. See API image proxy notes.
Issues and PRs are welcome. Please follow the linting rules and update documentation where relevant.
- Fork → 2. Feature branch → 3. Commit → 4. PR
MIT — see LICENSE
.
Built by IRedDragonICY • Hosted on Vercel • Desktop by Tauri