I found this thread useful so.. I registered to contribute an addition that completed my API setup. Here's what worked for me. Yes, I'm using the later release Bookworm and it seems it needed some extra configurations noted here from Buster.
1. Installed Debian Bookworm on a Raspi, followed bookwork guide here
https://zoneminder.readthedocs.io/en/la ... 2-bookworm
2. Created the .htaccess files in the 3 locations as noted in page one of this thread
3. Enabled auth and api in the zoneminder options, wrote some random text in the hash field
4. Test API curl, NO GO! error 404. Found some web site saying I must enable the rewrite module. INTERESTING! The instructions for Bookworm have you enable the cgi module but not rewrite. After enabling rewrite, restarting the service.. API WORKS! ZmNinja WORKS! I guess the command didn't get copied or it was expected rewrite was already enabled. In my case using the latest Bookworm from the pi imager on a raspi 5, seems this step was needed.
sudo a2enmod rewrite
sudo systemctl restart apache2
This was brought to my attention here
https://wiki.zoneminder.com/API
" Also make sure the appropriate apache modules are enabled (a2enmod rewrites, a2enmod cgi, and there are some others, see wiki.zoneminder.com/Debian)."
Also that page is informative in explaining that the getversion file does not actually exist, that the server builds the reply so.. if you go looking around in your web folders and don't find files in the API dir.. thats normal, the file does NOT exist, does not need to. The server generates the web page when you try to navigate to the URL with what looks like a file but is not actually a file. COOL!