Base

Base Signals package - includes all Signals bundles except "Economic".

Base Signals enables you to retrieve a list of key data points for a given individual, and includes all the other Signals bundles (except for Economic).

curl -X POST \
  https://api.fideo.ai/v3/verify.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"
      }
    ]
  },
  {
"personIds": [
      "c0VAsuEb4DRPuXmEXLutGitk-Hq9xUMautmqzyfuHpZyl3EP"
    ],
  "demographics": {
    "age": 39,
    "ageRange": "31-40",
    "gender": "Female",
    "locationGeneral": "Denver, Colorado, United States"
  },
  "emails": [
    {
      "md5": "4ae8f6dd533de3c08481d4cc9c10e80d",
      "sha1": "f9401124f3252a97244bd84bd960b167a20116f3",
      "sha256": "8b458dd2661e2cb2f40d6676eac54f8cabc83fde59229d1fe1425d0a83c21c1f",
      "firstSeenMs": 1350021600,
      "lastSeenMs": 1640415600,
      "observations": 201,
      "confidence": 0.97,
      "activity": 0.5,
      "label": "work"
    }
  ],
   "locations": [
    {
      "city": "Denver",
      "region": "Colorado",
      "regionCode": "CO",
      "country": "United States",
      "countryCode": "US",
      "formatted": "Denver, Colorado, United States"
    },
    {
      "city": "Tokyo",
      "country": "Japan",
      "countryCode": "JP",
      "formatted": "Tokyo, Japan"
    }
  ],
  "employment": [
    {
      "current": true,
      "company": "ID Fraud, Inc.",
      "domain": "idfraud.ai",
      "title": "Chief Technology Officer",
      "start": {
        "year": 2023,
        "month": 10,
        "day": 18
      }
    },
    {
      "current": false,
      "company": "She Sells Sea Shells, LLC",
      "domain": "shesells.seashells",
      "title": "Marketing Director",
      "start": {
        "year": 2018,
        "month": 10,
        "day": 1
      },
      "end": {
        "year": 2020,
        "month": 2,
        "day": 1
      }
    }
  ],
  "education": [
    {
      "name": "Colorado State University",
      "degree": "B.S. Marketing Science",
      "end": {
        "year": 2009,
        "month": 12,
        "day": 21
      }
    }
  ],
  "ipAddresses": [
    {
      "id": "192.158.1.38",
      "firstSeenMs": 1350021600,
      "lastSeenMs": 1640415600,
      "confidence": 0.95
    }
  ],
  "phones": [
    {
      "label": "work",
      "value": "+19702255555",
      "firstSeenMs": 1350021600,
      "lastSeenMs": 1640415600,
      "observations": 100,
      "confidence": 0.65
    }
  ],
  "socialProfiles": [
    {
      "username": "jenny.davidson",
      "userid": "215652865",
      "url": "https://www.linkedin.com/in/jennydavidson1186",
      "bio": "Cheif of Getting Things Done",
      "service": "linkedin",
      "followers": 508,
      "following": 307
    },
    {
      "username": "jennay1245",
      "url": "http://www.pinterest.com/jennay1245/",
      "service": "pinterest",
      "followers": 7456,
      "following": 21
    },
    {
      "username": "jennagainn12983",
      "userid": "8675309",
      "url": "https://twitter.com/jennagainn12983",
      "bio": "It's Jenn. Againn....",
      "service": "twitter",
      "followers": 62,
      "following": 50
    }
  ],
  "photos": [
  {
    "label": "avatar",
    "value": "https://d2ojpxxtu63wzl.cloudfront.net/static/a7e6a5aba590d4933e35eaadabd97fd2_44e00e968ac57725a15b32f9ca714827aff8e4818d290cb0c611f2e2585253b3"
  }
]
}

Person Signal Properties

See the data dictionary here.

Response Codes & Errors

Response CodesMessage
200 - OKYour request was successful
204 - No ContentIndividual is not found within Fideo's Identity Graph
400 - Bad RequestYour request was invalid
500 - Server ErrorSomething is broken on Fideo's side. If you encounter this, please contact us at [email protected] for assistance.
503 - Service UnavailableThere is a transient downstream error condition. We include a 'Retry-After' header dictating when to attempt the call again.