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

Search for Information on an Email Address

Request

Query
emailstringrequired

The email address you are using in your search.

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

Responses

OK - A successful Email Search returns an array of people and social profiles associated with an email address, as well as metadata.

Bodyapplication/json
dataobject
data.​ownersArray of objects
data.​owners[].​first_namestring

The person's first name.

Example: "John"
data.​owners[].​last_namestring

The person's last name.

Example: "Smith"
data.​owners[].​idstring

A unique identifier associated with the person. Input this ID into Person ID Search to retrieve person data, including contact information.

Example: 1234567890
data.​owners[].​phonesArray of any

Phone numbers associated with the person.

Example: ["555-555-1234"]
data.​owners[].​agenumber

The person’s current age or age at death.

Example: 62
data.​owners[].​dob_monthnumber

The person's birth month.

Example: 3
data.​owners[].​dob_yearnumber

The person's birth year.

Example: 1960
data.​owners[].​current_addressobject

Address associated with the person.

data.​owners[].​emailsArray of objects

Other email addresses associated with the person.

data.​owners[].​social_profilesArray of objects

Social profiles associated with the person.

data.​owners[].​work_historyArray of objects

Jobs the person held.

data.​owners[].​schoolsArray of objects

Schools the person attended.

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: "someone@gmail.com"
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: "email"
metadataobject
metadata.​total_owner_countnumber

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

Example: 1
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": { "owners": [ { "first_name": "John", "last_name": "Smith", "id": 1234567890, "phones": [ "555-555-1234" ], "age": 62, "dob_month": 3, "dob_year": 1960, "current_address": { "street_address": "123 Main St", "city": "Anytown", "latitude": 40.689247, "longitude": -74.0451471, "state": "AN", "zip": 12345 }, "emails": [ { "email": "someone@gmail.com", "chronology_rank": 1 } ], "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" } ], "work_history": [ { "title": "Product Manager", "company_name": "Spokeo", "is_current": true, "start_date": 2010, "end_date": 2012 } ], "schools": [ { "name": "California State University", "start_date": 2010, "end_date": 2012, "degrees": "master of science" } ] } ], "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": "someone@gmail.com", "is_primary_match": true, "match_type": "email" } ] }, "metadata": { "total_owner_count": 1, "total_social_profiles": 1 } }