Find a person using their Person ID, a unique identifier obtained from the results of a Name Search, Email Search, Phone Search, or Address Search (for Property Owners or Residents).
OK - A successful Person ID Search returns a Spokeo profile.
Bad Request
curl --header "X-api-key: [YOUR API KEY]" \ -X GET 'https://api.spokeo.com/v4/person_id/1234567890'
{- "data": {
- "person": {
- "id": 1234567890,
- "full_name": "John Doe",
- "first_name": "John",
- "last_name": "Doe",
- "aliases": [
- "John F Doe"
], - "gender": "Male",
- "age": 30,
- "dob_month": 3,
- "dob_year": 2000,
- "is_deceased": true,
- "death_month": 11,
- "death_year": 2010,
- "marital_status": "Married",
- "addresses": [
- {
- "is_current": true,
- "state": "PA",
- "city": "Anytown",
- "county": "Allegheny",
- "street_address": "123 Main St",
- "latitude": 40.689247,
- "longitude": -74.0451471,
- "zip": 11111
}
], - "emails": [
- {
- "email": "username@email.com",
- "type": "Commercial",
- "domain_name": "gmail",
- "source_count": 1,
- "chronology_rank": 1
}
], - "phones": [
- {
- "phone": 5551234567,
- "activity_status": "Active",
- "line_type": "Wireless",
- "city": "Anytown",
- "state": "PA",
- "listing_type": "Unknown",
- "carrier": "AT&T Mobility",
- "source_count": 1,
- "is_valid": true,
- "chronology_rank": 1
}
], - "relatives": [
- {
- "id": 1234567890,
- "full_name": "Jane Doe",
- "first_name": "Jane",
- "last_name": "Doe",
- "age": 99,
- "is_deceased": true,
- "death_year": 2010,
- "death_month": 11,
- "gender": "Female",
- "city": "Anytown",
- "state": "SC",
- "street_address": "123 Main St"
}
], - "work_history": [
- {
- "is_current": true,
- "end_date": null,
- "company_name": "Company Name Inc",
- "start_date": null,
- "title": null
}
], - "schools": [
- {
- "name": "Anytown University",
- "start_date": 2025,
- "type": "post-secondary institution",
- "location": "Anytown, CA",
- "majors": [
- "business"
]
}
], - "certifications": [
- {
- "name": "certified software engineer",
- "organization": "some coding school",
- "start_date": "2020-06",
- "end_date": "2022-08"
}
]
}
}, - "metadata": { }
}