Field Autocomplete
Autocomplete field names from the Field Registry. Use this endpoint to build search interfaces that suggest canonical field names as the user types.
GET
/fields/autocompleteQuery parameters
| Parameter | Type | Description |
|---|---|---|
| q | string | Search query (partial field name) |
| limit | integer | Max results (default 10) |
Example
curl "https://api.talonic.com/fields/autocomplete?q=vendor&limit=5" \
-H "Authorization: Bearer tlnc_sk_live_7f3a...x9k2"Response
{
"fields": [
{"id": "fld_001", "name": "vendor_name", "type": "string", "tier": 2},
{"id": "fld_002", "name": "vendor_address", "type": "string", "tier": 2},
{"id": "fld_003", "name": "vendor_tax_id", "type": "string", "tier": 2}
]
}