Overview
Languages
Servers
https://api.spokeo.com/v5/

Search for Information on a Username

Request

Query
usernamestringrequired

username to search for social profiles

curl -i -X GET \
  'https://api.spokeo.com/v5/usernames?username=string' \
  -H 'X-api-key: YOUR_API_KEY_HERE'

Responses

OK

Bodyapplication/json
dataobject
data.​social_profilesArray of objects
data.​social_profiles[].​profile_urlstring

The URL of a social media profile associated with the social profile

Example: "https://www.facebook.com/tangtalks"
data.​social_profiles[].​profile_photo_urlstring

The URL of a social media profile photo associated with the social profile

Example: "https://graph.facebook.com/123/picture?type=large&redirect=true"
data.​social_profiles[].​networkstring

The social media network associated with the social profile

Example: "facebook"
data.​social_profiles[].​usernamestring

The username associated with the social profile

Example: "tangtalks"
data.​social_profiles[].​display_namestring

The display name associated with the social profile

Example: "TangTalks"
data.​social_profiles[].​search_termstring

The matching search term. It can be either a username or email.

Example: "tangtalks"
data.​social_profiles[].​is_primary_matchboolean

A value of "true" signifies that the social profile was matched by the search query.

Example: true
data.​social_profiles[].​match_typestring

This indicates whether the match type is by email or username

Example: "username"
metadataobject
metadata.​total_social_profilesnumber

The total count in the array of social profiles returned based on your search inputs.

Example: 1
Response
application/json
{ "data": { "social_profiles": [ { "profile_url": "https://www.facebook.com/tangtalks", "profile_photo_url": "https://graph.facebook.com/123/picture?type=large&redirect=true", "network": "facebook", "username": "tangtalks", "display_name": "TangTalks", "search_term": "tangtalks", "is_primary_match": true, "match_type": "username" } ] }, "metadata": { "total_social_profiles": 1 } }