GET
/
v1
/
enrichments
/
{enrichmentId}
curl https://api.pipeium.com/v1/enrichments/enr_123 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "enr_123",
  "list_id": "list_123",
  "data": [
    {
      "name": "John Doe",
      "email": "john@example.com",
      "phone": "+1234567890",
      "company": "Acme Inc"
    }
  ],
  "completed_at": "2024-03-20T15:30:00Z"
}

Path Parameters

enrichmentId
string
required

The ID of the enrichment job to retrieve

Response

id
string

The ID of the enrichment job

list_id
string

The ID of the list that was enriched

data
array

The enriched data for the list

completed_at
string

ISO timestamp when the enrichment was completed

This endpoint will return a 401 error if the enrichment job is not yet completed. Use the status endpoint to check job status.

curl https://api.pipeium.com/v1/enrichments/enr_123 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "enr_123",
  "list_id": "list_123",
  "data": [
    {
      "name": "John Doe",
      "email": "john@example.com",
      "phone": "+1234567890",
      "company": "Acme Inc"
    }
  ],
  "completed_at": "2024-03-20T15:30:00Z"
}

Status Check

You can check the status of an enrichment job using:

GET /v1/enrichments/{enrichmentId}/status

This will return:

{
  "id": "enr_123",
  "status": "COMPLETED" // or "PENDING", "PROCESSING", "FAILED"
}