Pinterest API
One endpoint for public Pinterest profiles — the follower count, read from the structured block on the page and not from the text next to it. Same key and same response shape as nine other networks.
or get a key with just your email
curl -H "Authorization: Bearer $HH_KEY" \ "https://honesthook.com/api/v1/pinterest/profile?handle=pinterest"
{
"success": true,
"platform": "pinterest",
"endpoint": "pinterest/profile",
"data": {
"author": {
"id": "pinterest",
"handle": "pinterest",
"name": "Pinterest",
"followers": 6264894,
"following": null,
"posts_count": null,
"verified": null,
"is_private": null
}
},
"error": null,
"cached": false
}Recorded response, captured 27 Sep 2026. A live call returns the value at the moment you ask. The same envelope comes back from every other platform — only platform and endpoint change.
A field we cannot read comes back null, never 0. A zero would be a claim about the account; null is a fact about our collection.
This is read from the ld+json ProfilePage block, not with a regular expression, because the page carries dozens of counters with the same name. Keeping that block parsed when Pinterest moves it is the part you are handing over.
1,000 credits a month, free, renewing — no card. After that, US$ 9 per month for 5,000 credits. A profile call costs 1 credit, and a call that finds nothing costs nothing.
The free tier needs no account — the form at the top of this page is all of it. Signing in is for paying, and for seeing what a key has left. Paid plans renew until cancelled and a charge can be refunded in full within 7 days: terms · privacy.