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"
}
]
}
]
}
Get enrichment job status and results
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"
}
]
}
]
}
Show Account Object
Show Contact Object
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"
}
]
}
]
}