Get Pinterest profile
Fetch the authenticated Pinterest user's account information (username, profile image, board/pin/follower counts, monthly views). This returns Pinterest-specific profile fields that don't fit the cross-network GET /v1/social-accounts/{id}/metrics response — use that endpoint for normalized follower/post counts.
fetch("https://api.outstand.so/v1/pinterest/accounts/string/profile", { method: "GET"}){
"success": true,
"data": {
"username": "myaccount",
"profile_image": "https://i.pinimg.com/...",
"website_url": "https://example.com",
"account_type": "BUSINESS",
"board_count": 12,
"pin_count": 248,
"follower_count": 1024,
"following_count": 56,
"monthly_views": 45000
}
}{
"success": false,
"error": "Social account not found"
}{
"success": false,
"error": "Internal server error"
}