it seems the limit to getting dog images is 100, is it possible to get 102 images?
I tried this
https://api.thedogapi.com/v1/images/search?limit=100
for getting all images
how can I get 102 images based off a breed ?
I am using postman to query
it seems the limit to getting dog images is 100, is it possible to get 102 images?
I tried this
https://api.thedogapi.com/v1/images/search?limit=100
for getting all images
how can I get 102 images based off a breed ?
I am using postman to query
did you check the value returned in the headers from the first response? there is a field called pagination-count
if that is greater than 100 then you can ask for more by passing the page query parameter e.g. ?limit=100&page=1 - change the page value as needed