Get combined result
Returns the status and result of a combined job. When status is completed, the record object contains the entity resolution result and the requested enrichment.
POST /v1/combined.
When status is completed, the record field contains:
- The entity resolution result (
kernel_id,identity_resolution_*,legal_info,trading_info,entity_classification, and optionallylinkedin) - The follow-up enrichment result under
firmographicsorparentage, depending on thejobsvalue submitted - Your
external_id, echoed back onrecord.external_id, if you included one in the request
record.kernel_id is null, the identity detail fields and any requested follow-up fields are null, and identity_resolution_confidence and identity_resolution_reasoning explain the resolution attempt. See No match.
Processing response
While the combined job is running, the response includes asubprocesses object showing the status of each step:
pending → processing → completed | failed lifecycle. Poll until the top-level status is completed or failed.
Completed response examples
With firmographics
With parentage
With firmographics and parentage
No match
If entity resolution does not find a match, the follow-up credits are refunded, the follow-up jobs are skipped, and the job completes withkernel_id: null. The requested follow-up fields (firmographics, parentage) are returned as null, along with linkedin if match_to_linkedin was requested. identity_resolution_confidence and identity_resolution_reasoning remain populated to explain the resolution attempt:
Failed response
If the job fails for another reason, the response usesjobid instead of id and includes error_message and error_type:
Authorizations
Include your API key in the x-api-key header.
Path Parameters
Job ID returned by the POST endpoint
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
Response
Job status response
Current status of the job. Terminal states are completed and failed.
pending, processing, completed, failed Unique identifier for the job. Present when status is pending, processing, or completed.
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
Unique identifier for the job. Present only when status is failed.
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
ISO 8601 timestamp when the job was created.
"2025-06-05T12:00:00Z"
ISO 8601 timestamp when the job reached a terminal state.
"2025-06-05T12:00:05Z"
Combined entity resolution and enrichment result. Present when status is completed.
Error message. Present when status is failed.
Machine-readable error type. Present when status is failed. One of: kernel_id_not_found, unknown.

