GET
/
enrichments
/
{id}
curl --request GET \
  --url https://api.pipeium.com/enrichments/123e4567-e89b-12d3-a456-426614174000 \
  --header 'Authorization: Bearer {api_key}'
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "list_id": "550e8400-e29b-41d4-a716-446655440000",
  "completed_at": "2024-03-20T15:30:00Z",
  "data": [
    {
      "id": "acc_123",
      "domain": "acme.com",
      "name": "Acme Inc",
      "linkedin": "https://linkedin.com/company/acme",
      "contacts": [
        {
          "id": "con_456",
          "firstName": "John",
          "lastName": "Smith",
          "email": "john@acme.com",
          "isEmailVerified": true,
          "phoneNumber": "+1234567890",
          "isPhoneVerified": true,
          "linkedin": "https://linkedin.com/in/johnsmith",
          "jobTitle": "Sales Director"
        }
      ]
    }
  ]
}
Retrieve the status and results of an enrichment job. If the job is completed, this will return the enriched data.

Path Parameters

id
string
required
The ID of the enrichment job to retrieve

Response

id
string
ID of the enrichment job
list_id
string
ID of the list being enriched
completed_at
string
ISO timestamp when enrichment completed
data
array
Array of enriched accounts and contacts (only returned if status is COMPLETED)
curl --request GET \
  --url https://api.pipeium.com/enrichments/123e4567-e89b-12d3-a456-426614174000 \
  --header 'Authorization: Bearer {api_key}'
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "list_id": "550e8400-e29b-41d4-a716-446655440000",
  "completed_at": "2024-03-20T15:30:00Z",
  "data": [
    {
      "id": "acc_123",
      "domain": "acme.com",
      "name": "Acme Inc",
      "linkedin": "https://linkedin.com/company/acme",
      "contacts": [
        {
          "id": "con_456",
          "firstName": "John",
          "lastName": "Smith",
          "email": "john@acme.com",
          "isEmailVerified": true,
          "phoneNumber": "+1234567890",
          "isPhoneVerified": true,
          "linkedin": "https://linkedin.com/in/johnsmith",
          "jobTitle": "Sales Director"
        }
      ]
    }
  ]
}