How to get the search channel from Pinterest API

I am looking to find the Pinterest API feed for a mobile application. May I learn how to get the search channel from the Pinterest API.

+3
source share
3 answers

There is documentation https://developers.pinterest.com/api_docs/ about their api, however this only applies to domain requests that are verified and belong to your Pinterest account.

0
source

This has been deprecated since 2019, and I think this might be the right place to find what you are looking for.

0
source

If you can use the unofficial API, with py3-pinterest you can do it like this in Python

 results = [] search_batch = pinterest.search(scope='boards', query='food') while len(search_batch) > 0: results += search_batch # do whatever with results 

full code example

0
source

All Articles