curl --request POST \
--url https://api.instaview.sk/sourcing/enrich \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"profileIds": [
"profile_abc123",
"profile_def456"
],
"webhookId": "123e4567-e89b-12d3-a456-426614174000"
}
'import requests
url = "https://api.instaview.sk/sourcing/enrich"
payload = {
"profileIds": ["profile_abc123", "profile_def456"],
"webhookId": "123e4567-e89b-12d3-a456-426614174000"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
profileIds: ['profile_abc123', 'profile_def456'],
webhookId: '123e4567-e89b-12d3-a456-426614174000'
})
};
fetch('https://api.instaview.sk/sourcing/enrich', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.instaview.sk/sourcing/enrich",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'profileIds' => [
'profile_abc123',
'profile_def456'
],
'webhookId' => '123e4567-e89b-12d3-a456-426614174000'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.instaview.sk/sourcing/enrich"
payload := strings.NewReader("{\n \"profileIds\": [\n \"profile_abc123\",\n \"profile_def456\"\n ],\n \"webhookId\": \"123e4567-e89b-12d3-a456-426614174000\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.instaview.sk/sourcing/enrich")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"profileIds\": [\n \"profile_abc123\",\n \"profile_def456\"\n ],\n \"webhookId\": \"123e4567-e89b-12d3-a456-426614174000\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.instaview.sk/sourcing/enrich")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"profileIds\": [\n \"profile_abc123\",\n \"profile_def456\"\n ],\n \"webhookId\": \"123e4567-e89b-12d3-a456-426614174000\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"requestId": "enr_550e8400-e29b-41d4-a716-446655440000",
"status": "processing",
"message": "Enrichment run accepted and queued for processing.",
"createdAt": "2025-01-01T00:00:00.000Z",
"webhookId": "123e4567-e89b-12d3-a456-426614174000"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}Initiate Enrichment Run
Submits a batch of candidate profile IDs for deep background enrichment. Returns immediately with a requestId and status ‘processing’. Results are delivered via webhook (ENRICH_COMPLETED / ENRICH_FAILED) or polled at GET /sourcing/enrich//results. Consumes 1 credit per successfully enriched profile.
curl --request POST \
--url https://api.instaview.sk/sourcing/enrich \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"profileIds": [
"profile_abc123",
"profile_def456"
],
"webhookId": "123e4567-e89b-12d3-a456-426614174000"
}
'import requests
url = "https://api.instaview.sk/sourcing/enrich"
payload = {
"profileIds": ["profile_abc123", "profile_def456"],
"webhookId": "123e4567-e89b-12d3-a456-426614174000"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
profileIds: ['profile_abc123', 'profile_def456'],
webhookId: '123e4567-e89b-12d3-a456-426614174000'
})
};
fetch('https://api.instaview.sk/sourcing/enrich', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.instaview.sk/sourcing/enrich",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'profileIds' => [
'profile_abc123',
'profile_def456'
],
'webhookId' => '123e4567-e89b-12d3-a456-426614174000'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.instaview.sk/sourcing/enrich"
payload := strings.NewReader("{\n \"profileIds\": [\n \"profile_abc123\",\n \"profile_def456\"\n ],\n \"webhookId\": \"123e4567-e89b-12d3-a456-426614174000\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.instaview.sk/sourcing/enrich")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"profileIds\": [\n \"profile_abc123\",\n \"profile_def456\"\n ],\n \"webhookId\": \"123e4567-e89b-12d3-a456-426614174000\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.instaview.sk/sourcing/enrich")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"profileIds\": [\n \"profile_abc123\",\n \"profile_def456\"\n ],\n \"webhookId\": \"123e4567-e89b-12d3-a456-426614174000\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"requestId": "enr_550e8400-e29b-41d4-a716-446655440000",
"status": "processing",
"message": "Enrichment run accepted and queued for processing.",
"createdAt": "2025-01-01T00:00:00.000Z",
"webhookId": "123e4567-e89b-12d3-a456-426614174000"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}{
"statusCode": 400,
"message": "Validation failed",
"error": "Bad Request"
}requestId and status: "processing". Results are delivered via webhook or polled at GET /sourcing/enrich//results.
Overview
Enrichment performs a deep background evaluation of each profile against external indexing platforms, scrapes publicly available portfolios, and attempts to discover verified email contact addresses. Each successfully enriched profile consumes 1 credit.Resilience Behaviour
- Per-profile timeout: 10 seconds per candidate.
- Isolated failures: if a single profile times out or fails, it is isolated and marked as failed. The remaining profiles in the batch continue processing.
- Billing: only successfully enriched profiles are billed.
Billing Pre-Flight
- Prepaid accounts: your credit balance must be ≥ the number of requested profile IDs. If insufficient, the API returns
402 Payment Requiredbefore any enrichment starts. - Postpaid accounts: the run starts immediately; credits are recorded and invoiced at end of the billing cycle.
Webhook Delivery
Pass awebhookId referencing a WebhookConfig that subscribes to at least one of ENRICH_COMPLETED or ENRICH_FAILED. The webhook config must belong to the same company as the API key.
Examples
Request
{
"profileIds": ["prof_a9238f82-a723", "prof_e8321c12-b912"],
"webhookId": "3f9a12c7-44b8-4d32-b71f-e29a7d1e0f5c"
}
Response (202 Accepted)
{
"success": true,
"requestId": "enr_550e8400-e29b-41d4-a716-446655440001",
"status": "processing",
"message": "Enrichment run accepted and queued for processing.",
"webhookId": "3f9a12c7-44b8-4d32-b71f-e29a7d1e0f5c",
"createdAt": "2026-05-20T13:21:00.000Z"
}
Error Responses
402 — Insufficient Credits (Prepaid)
{
"statusCode": 402,
"error": "INSUFFICIENT_FUNDS",
"message": "Insufficient credits. Need 2, have 0."
}
422 — Webhook Not Subscribed to Enrichment Events
{
"statusCode": 422,
"error": "WEBHOOK_EVENT_NOT_SUBSCRIBED",
"message": "Webhook configuration must subscribe to at least one enrich event (ENRICH_COMPLETED or ENRICH_FAILED)."
}
Authorizations
API key for authentication using Bearer scheme
Body
Array of profile IDs to enrich. Maximum 10 per request.
1 - 10 elements["profile_abc123", "profile_def456"]
UUID of a WebhookConfig to notify when the enrichment run completes or fails. The webhook must belong to the same company and subscribe to at least one enrich event (ENRICH_COMPLETED or ENRICH_FAILED).
"123e4567-e89b-12d3-a456-426614174000"
Response
Enrichment run accepted and queued for processing
Whether the request was accepted for processing.
true
Unique identifier for this enrichment run.
"enr_550e8400-e29b-41d4-a716-446655440000"
Current status of the enrichment run.
processing, completed, failed "processing"
Human-readable message.
"Enrichment run accepted and queued for processing."
ISO 8601 timestamp when the run was created.
"2025-01-01T00:00:00.000Z"
UUID of the webhook configuration that will receive completion events.
"123e4567-e89b-12d3-a456-426614174000"