Field Autocomplete
Autocomplete extracted field names from the registry, ranked by relevance and occurrence count. Power field pickers and type-ahead search UIs.
The Talonic API lets you search and filter documents by their extracted field values: field autocomplete resolves field names, document filtering applies composable conditions, and global omnisearch queries every entity type at once. The field autocomplete endpoint is the entry point: it performs type-ahead search over the field registry, the deduplicated catalog of every field Talonic has extracted from your documents.
Results are ranked by a combination of name relevance and occurrence count, so frequently seen fields surface first. Use this to power field picker dropdowns and search-as-you-type UIs, or to resolve a field ID before calling the field values or filter endpoints.
/v1/search/autocompleteQuery parameters
20Request
Response
Response fields
Response
{
"data": [
{
"fieldId": "fld_a1b2c3d4",
"canonicalName": "supplier_name",
"displayName": "Supplier Name",
"dataType": "string",
"tier": 1,
"occurrenceCount": 1842,
"matchSource": "canonical",
"sampleValues": ["Acme Corp", "Globex Inc", "Initech"]
}
]
}Errors
Error responses