Person Signals
Receive key demographic signals associated with an individual to flag suspicious activities or validate identities.
Person Signals enables you to retrieve a list of key demographic attributes such as, age, age range, gender and general location of a given individual.
curl -X POST \
https://api.fideo.ai/signals \
-H 'Authorization: Bearer {Your API Key}' \
-H "Content-Type: application/json" \
-d '{
"emails": [
"[email protected]"
],
"phones": [
"+15552227799"
],
"location": {
"addressLine1": "123 Main Street",
"city": "Denver",
"region": "Colorado",
"regionCode": "CO",
"postalCode": "80203"
},
"name": {
"given": "Sally",
"family": "Smith"
},
"profiles": [{
"service": "twitter",
"username": "smith"
}, {
"service": "twitter",
"userid": "123456"
}, {
"service": "linkedin",
"url": "https://www.linkedin.com/in/sallysmi"
}, {
"service": "github",
"url": "https://www.github.com/smith"
}],
}'
{
"name": {
"first": "Karen",
"middle": "L",
"last": "Jackson",
"aliases": [
{
"first": "Kitty",
"last": "Smith"
}
]
},
"demographics": {
"age": 39,
"ageRange": "31-40",
"gender": "Female",
"locationGeneral": "Denver, Colorado, United States"
}
}
Person Signal Properties
Property Name | Type | Description |
---|---|---|
name | array | Array of names for the individual |
name[n].first | string | The first name of the individual. |
name[n].middle | string | The middle name of the individual. |
name[n].last | string | The family name (last name) of the individual. |
name[n].aliases | array | Array of alias, or other known names for an individual |
name[n].aliases[n].first | string | The first name of the additional name / alias. |
name[n].aliases[n].middle | string | The middle name of the additional name / alias. |
name[n].aliases[n].last | string | The last name of the additional name / alias. |
demographics.age | integer | The age of the individual. |
demographics.ageRange | string | An age range of the individual, in 10 year increments. |
demographics.gender | string | The gender of the individual: Male or Female. |
demographics.locationGeneral | string | The general location of the individual (City, State, or Country). |
Response Codes & Errors
Response Codes | Message |
---|---|
200 - OK | Your request was successful |
204 - No Content | Individual is not found within Fideo's Identity Graph |
400 - Bad Request | Your request was invalid |
500 - Server Error | Something is broken on Fideo's side. If you encounter this, please contact us at [email protected] for assistance. |
503 - Service Unavailable | There is a transient downstream error condition. We include a 'Retry-After' header dictating when to attempt the call again. |
Updated about 1 month ago