Authentication
Requires a Bearer token in the Authorization header.
Authorization: Bearer YOUR_API_KEY
Request
The email address to look up.
Comma-separated list of fields to return. Omit to return all fields.Available fields: n, e, co, role, ind, loc, bio, age, g, edu, pic, s, news, pub
Field reference
| Key | Description |
|---|
n | Full name |
e | Email |
co | Company |
role | Job role |
ind | Industry |
loc | Location (city, country) |
bio | Biography |
age | Age |
g | Gender |
edu | Education (level + university + field) |
pic | Photo URL |
s | Social links (li, tw, ig, fb, gh) |
news | News mentions (t, u, d, s) |
pub | Publications (t, u, y, c) |
Example request
curl -X POST "https://encrata.com/v1/agent/lookup?fields=n,co,role,s" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"e": "satya@microsoft.com"}'
Response
Full name (first + middle + last).
Location as “city, country”.
Education summary (level, university, field).
Example response
{
"n": "Satya Nadella",
"co": "Microsoft",
"role": "CEO",
"s": {
"li": "https://linkedin.com/in/satyanadella"
}
}
{
"n": "Satya Nadella",
"e": "satya@microsoft.com",
"co": "Microsoft",
"role": "CEO",
"ind": "Technology",
"loc": "Redmond, US",
"s": {
"li": "https://linkedin.com/in/satyanadella"
}
}