Skip to main content
POST
/
contacts
/
{id}
/
enrich
Enrich a contact
curl --request POST \
  --url https://app.leonar.app/api/v1/contacts/{id}/enrich \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "work_email"
}
'
{
  "data": {
    "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "type": "<string>",
    "status": "pending"
  }
}

Authorizations

Authorization
string
header
required

API key starting with leo_

Path Parameters

id
string<uuid>
required

Contact ID

Body

application/json
type
enum<string>
required

Type of information to find

Available options:
work_email,
personal_email,
phone

Response

Enrichment request created

data
object