# Crustdata Company Search Field Autocomplete

> Crustdata Company Search Field Autocomplete is a paid API for AI agents from crustdata.withzero.xyz, paid per call via MPP, $0.01/call, status unknown (last checked 2026-09-15).

Returns autocomplete suggestions for a specified company search field to support query-builder UI and filter construction.

## Facts

- Endpoint: POST https://crustdata.withzero.xyz/api/v1/company/search/autocomplete
- Price: $0.01/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 3
- Provider: crustdata.withzero.xyz
- Website: https://crustdata.withzero.xyz
- Canonical page: https://www.zero.xyz/c/crustdata-withzero-xyz-crustdata-company-search-field-autocomplete-e7fbacb0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pCGy7vBc_j9EmSP5DKuiO

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability crustdata-withzero-xyz-crustdata-company-search-field-autocomplete-e7fbacb0 -d '<json body>'
```

Example prompt: I'm building a company search filter in Crustdata — can you autocomplete the linkedin_industries field for the partial value 'Software' and return up to 10 suggestions, narrowed to companies headquartered in the USA?

## When to prefer this

Use this endpoint when building a dynamic query UI or filter interface that needs valid field values for company search, particularly when using Crustdata dot-path field notation. Prefer this over hardcoding values when field options may vary or when supporting user-driven filter construction for account list targeting.

## Known failure modes

- Missing required 'field' parameter returns a 400 validation error
- Invalid field name not recognized by Crustdata returns empty suggestions or upstream error
- Upstream Crustdata service unavailable returns 502/503
- Limit value outside 1-100 range returns validation error
- Malformed filters object causes upstream rejection

## How this service works

Query-builder helper route: autocomplete company search field values for UI/filter construction. Minimum-charge route: $0.01 on successful upstream calls.

## Output

Returns a data object containing raw Crustdata autocomplete suggestions for the specified field, plus billing metadata including API credits charged, USDC micro-units settled, and the minimum call charge.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "example": {
  "field": "taxonomy.professional_network_industry",
  "limit": 10,
  "query": "Software"
 },
 "required": [
  "field"
 ],
 "properties": {
  "field": {
   "type": "string",
   "example": "taxonomy.professional_network_industry",
   "minLength": 1,
   "description": "Company search field to autocomplete, using Crustdata dot-path notation for indexed endpoints."
  },
  "limit": {
   "type": "integer",
   "example": 10,
   "maximum": 100,
   "minimum": 1,
   "description": "Maximum suggestions to return."
  },
  "query": {
   "type": "string",
   "example": "Software",
   "description": "Partial value to match."
  },
  "filters": {
   "example": {
    "op": "and",
    "conditions": [
     {
      "type": "=",
      "field": "basic_info.primary_domain",
      "value": "browserbase.com"
     }
    ]
   },
   "description": "Optional provider-native filters to narrow suggestions."
  }
 },
 "additionalProperties": {}
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "data"
 ],
 "properties": {
  "data": {
   "description": "Raw JSON response returned by Crustdata."
  },
  "billing": {
   "type": "object",
   "required": [
    "apiCredits",
    "minimumCallUsdcMicro",
    "pricePerCreditUsdcMicro",
    "settledUsdcMicro"
   ],
   "properties": {
    "apiCredits": {
     "type": "number",
     "example": 0.06,
     "description": "Estimated Crustdata API credits charged for this request."
    },
    "settledUsdcMicro": {
     "type": "string",
     "example": "10000",
     "description": "USDC micro-units settled for this request."
    },
    "minimumCallUsdcMicro": {
     "type": "string",
     "example": "10000",
     "description": "Configured minimum successful-call settlement in USDC micro-units."
    },
    "pricePerCreditUsdcMicro": {
     "type": "string",
     "example": "100000",
     "description": "Configured USDC micro-units charged per Crustdata API credit."
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crustdata-withzero-xyz-crustdata-company-search-field-autocomplete-e7fbacb0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crustdata.withzero.xyz](https://www.zero.xyz/host/crustdata.withzero.xyz/llms.txt)
