Pinterest URL Stats API
How many times each of up to 10 external URLs has been saved to Pinterest - a direct read on which of your pages the platform actually amplifies. Costs 1 credit per request.
POST/api/v1/pinterest/url-stats
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonurlsstring[]required1-10 absolute http(s) URLs.
Example: ["https://www.nytimes.com", "https://www.allrecipes.com"]
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.pinterest.url_stats(["https://www.nytimes.com", "https://www.allrecipes.com"])
print(result)Response
"count": 2
},
"response_time": 3385
}