Pinterest Profile API
A Pinterest user's profile: display name, bio, avatar, follower and following counts, pin and board counts, and verification status. Costs 1 credit per request.
POST/api/v1/pinterest/profile
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/jsonusernamestringrequiredPinterest username (optionally with a leading @) or a profile URL like https://www.pinterest.com/pinterest/.
Example: pinterest
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
result = client.pinterest.profile("pinterest")
print(result)Response
"id": "424605208526455283",
"username": "pinterest",
"full_name": "Pinterest",
"first_name": "Pinterest",
"about": "Find your reason to go offline. 📌",
"website_url": "http://www.pinterest.com",
"domain_url": "www.pinterest.com",
"domain_verified": true,
"profile_url": "https://www.pinterest.com/pinterest/",
"image_url": "https://i.pinimg.com/280x280_RS/1c/b5/61/1cb561c8e7b9c709f78d110a4b5f0863.jpg",
"follower_count": 6258844,
"following_count": 394,
"pin_count": 95672,
"board_count": 131,
"group_board_count": 103,
"is_verified_merchant": false,
"is_private_profile": false,
"is_partner": true,
"has_catalog": false,
"created_at": "2012-08-16T06:25:03.000Z"
},
"response_time": 3069
}