Person ID Search

Look up a person profile based on their PID(Person ID).

Search for a Person by ID

Securityapi_key
Request
query Parameters
id
required
string

unique person identifier

Responses
200

OK

Response Schema: application/json
object
id
string
full_name
string
first_name
string
last_name
string
aliases
Array of strings
gender
string
age
number
is_deceased
boolean
death_month
number
death_year
number
marital_status
string
Array of objects
Array
is_current
boolean
state
string
city
string
county
string
street_address
string
latitude
number
longitude
number
zip
string
emails
Array of strings
Array of objects
Array
network_name
string
url
string
photo_url
string
phones
Array of strings
Array of objects
Array
id
string
full_name
string
first_name
string
last_name
string
age
number
is_deceased
boolean
death_year
number
death_month
number
gender
string
city
string
state
string
street_address
string
Array of objects
Array
is_current
boolean
end_date
string
company_name
string
start_date
string
title
string
current
boolean
412

Precondition Failed

get/person_ids
Request samples
curl --header "X-api-key: [YOUR API KEY]" \
  -X GET 'https://api.spokeo.com/v3/person_ids?id=1234567890'
Response samples
application/json
{
  • "person": {
    • "id": 1234567890,
    • "full_name": "John Doe",
    • "first_name": "John",
    • "last_name": "Doe",
    • "aliases": [
      ],
    • "gender": "Male",
    • "age": 30,
    • "is_deceased": true,
    • "death_month": 11,
    • "death_year": 2010,
    • "marital_status": "Married",
    • "addresses": [
      ],
    • "emails": [
      ],
    • "social_profiles": [],
    • "phones": [
      ],
    • "relatives": [
      ],
    • "work_history": [
      ]
    }
}