Economic Signals
Receive key economic platform signals for additional context
Economic Signals enables you to retrieve a set of signals about a person's economic details.
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"
}],
}'
{
"economic": {
"dwellingType": "S",
"homeOwnership": "R",
"maritalStatus": "M",
"presenceOfChildren": "Y",
"income": "$80,000 - $100,000",
"netWorth": "$450,000"
}
}
Economic Signals Response Properties
Property Name | Type | Description |
---|---|---|
dwellingType | string | Type of dwelling unit, such as Apartment, Multi-Family Home, or Single-Family Home |
homeOwnership | string | Rental or Homeowner |
maritalStatus | string | Married or Single |
presenceOfChildren | string | Y (yes) or N (no) for whether the household has children in it. |
income | string | Estimated income range. |
netWorth | string | Estimated total net worth of the individual. |
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