Skip to main content
POST
/
people
/
enrichment-requests
Start batch of person enrichments
curl --request POST \
  --url https://api.amplemarket.com/people/enrichment-requests \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "leads": [
    {
      "email": "[email protected]",
      "linkedin_id": "<string>",
      "company_domain": "<string>",
      "company_name": "<string>",
      "name": "<string>",
      "title": "<string>"
    }
  ],
  "reveal_email": true,
  "reveal_phone_numbers": true
}
'
{
"id": 18,
"object": "person_enrichment",
"status": "queued",
"results": [],
"_links": {
"self": {
"href": "/people/enrichment-requests/18"
}
}
}
Credit consumption:
  • 0.5 email credits when a person is found, charged at most once per 24 hours
  • 1 email credit when an email is revealed, only charged once
  • 1 phone credit when a phone number is revealed, only charged once

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Leads to be enriched

leads
object[]
required
reveal_email
boolean
reveal_phone_numbers
boolean

Response

Batch accepted

id
integer
required
object
enum<string>
required
Available options:
person_enrichment
status
enum<string>
required
Available options:
queued,
processing,
completed,
canceled,
error
results
object[]
required
_errors
object[]