bulk activity query

Active member
Joined
Feb 2, 2025
Messages
90
The Tech & Programming forum seemed like the closest match for this question, but some kind of manual steps would be fine too.

I am wondering if there are ways to do bulk changes? For example at the moment I would like to take everything I have marked as Re-Reading and change its status to Dropped. (*)

I have a fair bit of programming experience, but I know nothing about scripting for this site.

(*) I previously had marked about 700 manga as Dropped, and manually went through them all selecting out the Loli / Lolicon / Shota / Incest and marked those all as Re-Read, and marked the manga I was merely bored with as Hold. Now that I have finished that manual filtering, I want to bulk mark all 395 Re-Read as Dropped.
 
Dex-chan lover
Joined
Jan 11, 2023
Messages
1,479
I have a fair bit of programming experience, but I know nothing about scripting for this site.
Well, i guess you can use the API or find any (whatever programming language you like) libraries if you are lazy to call the endpoints.

I am wondering if there are ways to do bulk changes? For example at the moment I would like to take everything I have marked as Re-Reading and change its status to Dropped. (*)
To get your library entire library, there is the GET /manga/status to get your library titles ids. Use GET /manga/status?status=re_reading to get your 365 re-read title ids.
Unfortunately, the API doesn't not provide any sort of "bulk update manga reading status" endpoint, so you might need to loop over the titles ids and call the POST /manga/{id}/status endpoint to change the reading status.

NOTE:
 

Users who are viewing this thread

Top