Is there a way to retrieve the actual image filename that can be used? I'm creating a WordPress plugin that generates test data and I'd like to use this image API if I can, but I would need the actual URL.
example: doing a GET request to https://loremflickr.com/600/600 would return a JSON array of data which would include the https://loremflickr.com/cache/resized/4105_5037255879_a514fdbcfa_b_600_600_nofilter.jpg image URL itself.
For the record, I am not intending on hotlinking images, rather, importing them into the WP database.
Is there a way to retrieve the actual image filename that can be used? I'm creating a WordPress plugin that generates test data and I'd like to use this image API if I can, but I would need the actual URL.
example: doing a GET request to
https://loremflickr.com/600/600would return a JSON array of data which would include thehttps://loremflickr.com/cache/resized/4105_5037255879_a514fdbcfa_b_600_600_nofilter.jpgimage URL itself.For the record, I am not intending on hotlinking images, rather, importing them into the WP database.