Skip to main content

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/autocomplete

Query parameters

ParameterTypeDescription
qstringSearch query (partial field name)
limitintegerMax 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}
  ]
}