Skip to main content
POST
/
companies
/
enrichment-requests
Start batch of company enrichments
curl --request POST \
  --url https://api.amplemarket.com/companies/enrichment-requests \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "companies": [
    {
      "domain": "<string>",
      "linkedin_url": "<string>"
    }
  ]
}
'
{
"id": 35,
"object": "company_enrichment",
"status": "queued",
"results": [],
"_links": {
"self": {
"href": "/companies/enrichment-requests/35"
}
}
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Companies to be enriched

companies
object[]
required

Response

Batch accepted

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