You can Paginate on the Pinterest API by adding the limit Curling parameter:
https://api.pinterest.com/v1/boards/anapinskywalker/wanderlust/pins/? access_token=abcde& limit=2& fields=id,link,counts,note
This will return two outputs, the second page of the object call will also be returned.
"page": { "cursor":"abcde1234", "next":"https://api.pinterest.com/v1/boards/anapinskywalker/wanderlust/pins/?access_token=abcde&fields=id%2Clink%2Ccounts&2Cnote&limit=2&cursor=abcde1234" }
You can then CURL with the following URL to see the following two outputs.
woodchuck
source share