Get Results
Get per-field resolution results showing original values, resolved values, resolution step used, and confidence scores for each document.
GET
/v1/resolutions/{id}/resultsResponse
Response fields
dataarrayArray of per-field resolution result objects.
data[].idstringResult UUID.
data[].resolution_run_idstringParent resolution run UUID.
data[].document_idstringDocument UUID this result belongs to.
data[].field_namestringField key that was resolved.
data[].original_valuestring | nullRaw extracted value before resolution.
data[].resolved_valuestring | nullCanonical value after resolution.
data[].resolution_stepstring | nullStrategy that produced the resolved value (e.g. lookup, transfer, compute).
data[].confidencenumber | nullConfidence score for the resolved value (0–1).
data[].created_atstringISO 8601 timestamp.
Response
{
"data": [
{
"id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
"resolution_run_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"document_id": "d4e5f6a7-b8c9-0123-defa-234567890123",
"field_name": "country",
"original_value": "Deutschland",
"resolved_value": "DE",
"resolution_step": "lookup",
"confidence": 0.98,
"created_at": "2024-09-14T10:35:00.000Z"
}
]
}Errors
Error responses
401unauthorizedMissing or invalid API key.
404not_foundResolution run not found or does not belong to your organization.
429rate_limitedToo many requests. Retry after the period indicated in the Retry-After header.