Skip to main content
POST
/
api
/
v1
/
person
/
enrich
Enrich a person
curl --request POST \
  --url https://api.hanto.ai/api/v1/person/enrich \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]"
}
'
{
  "lookup_id": "lookup_2F0knGH5CSqVAveuPlyCelx1",
  "status": "found",
  "profile": {
    "linkedin_url": "https://www.linkedin.com/in/person"
  }
}
Only the email field is accepted. Requests with extra fields return 400 with {"error":"invalid_request"}.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your Hanto API key.

Body

application/json
email
string<email>
required

Personal email address to enrich.

Response

Hanto found a professional profile match.

lookup_id
string
required

Unique lookup identifier.

Example:

"lookup_2F0knGH5CSqVAveuPlyCelx1"

status
enum<string>
required
Available options:
found
profile
object
required