Social
The Social Insights Bundle enables API consumers to retrieve a list of known social profiles of a given contact, returning data for each social platform such as any applicable usernames/handles, the URL of the platform, any bio that the user supplied, and more. Additionally, any profile pictures and URLs to other websites associated with the contact will be returned. This Insights Bundle will be returned within the profiles, photos, and urls keys in the details object of a Person Summary object.
"profiles": {
"twitter": {
"username": "bartlorang",
"userid": "5998422",
"url": "https://twitter.com/bartlorang",
"bio": "CEO & Co-Founder of @FullContact, Managing Director @v1vc_. Tech Entrepreneur, Investor. Husband to @parkerbenson and Father to Greyson Lorang",
"service": "twitter",
"followers": 5454,
"following": 741
},
...
},
"photos": [
{
"label": "avatar",
"value": "https://d2ojpxxtu63wzl.cloudfront.net/static/a7e6a5aba590d4933e35eaadabd97fd2_44e00e968ac57725a15b32f9ca714827aff8e4818d290cb0c611f2e2585253b3"
}
],
"urls": [
{
"label": "blog",
"value": "http://sample.blog.com"
}
]| Properties | |
|---|---|
| profiles.\{platform}.username string | Displayable username of the profile. |
| profiles.\{platform}.userid string | User ID associated with the profile. |
| profiles.\{platform}.url string | URL to the profile on the social platform. |
| profiles.\{platform}.bio string | Bio of the profile form the social platform. |
| profiles.\{platform}.service string | Name of the social platform. |
| profiles.\{platform}.followers integer | Number of follows of the profile, if applicable. |
| profiles.\{platform}.following integer | Number of profiles or topics the user is following, if applicable. |
| photos\[n].label string | The type of photo. |
| photos\[n].value string | The URL to the photo. |
| urls\[n].label string | The type of URL/website. |
| urls\[n].value string | The URL of the website. |
Updated about 15 hours ago