Tag API param 'page' not work.
in http://konachan.net/help/api#tags
I found that param 'page' no effect for response result.
is it a bug or something I dont know?
Indeed, that's a bug and it's unlikely to be fixed any time soon. I think your only options are to use limit=0 or use the html page.

Though limit=0 will be slow (about 5.2 MB) and a load on the server, so don't call it too often. If you are writing a program and can use cached data, limit=0 makes sense.

If you are writing a web app or need to constantly check for changes, I suggest loading the html page and accessing the data in the DOM using javascript.
Zolxys said:
Indeed, that's a bug and it's unlikely to be fixed any time soon. I think your only options are to use limit=0 or use the html page.

Though limit=0 will be slow (about 5.2 MB) and a load on the server, so don't call it too often. If you are writing a program and can use cached data, limit=0 makes sense.

If you are writing a web app or need to constantly check for changes, I suggest loading the html page and accessing the data in the DOM using javascript.
Well actually I'm making a tags collection crawler for user need.
here is my project:https://github.com/Wbooru/Wbooru
It's less call if limit=0 will get all tags definition in konachan.
Thank you for providing another good solution and I will implement them.