# Crustdata Job Search Field Autocomplete via WithZero/ZeroClick

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

Returns autocomplete suggestions for a specified job search field (e.g. job title) based on a partial query string, powered by Crustdata's job data.

## Facts

- Endpoint: POST https://agents.withzero.xyz/api/v1/crustdata/job/search/autocomplete
- Price: $0.01/call
- Payment: x402, MPP
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crustdata-job-search-field-autocomplete-via-withzero-zeroclick-d289afa7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U9XC7zvOP06AR3QT7tCyC

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-job-search-field-autocomplete-via-withzero-zeroclick-d289afa7 -d '<json body>'
```

Example prompt: Give me up to 10 autocomplete suggestions for the Crustdata job title field starting with 'Software' so I can populate a dropdown for job search filtering.

## When to prefer this

Use this endpoint when you need autocomplete or typeahead suggestions for a specific Crustdata job search field — such as job title, department, or location — and want to present users or agents with valid, real-world values drawn from Crustdata's live job dataset. Prefer this over a full job search when you only need field value suggestions, not full job records. It is pay-per-use with no vendor account required.

## Known failure modes

- Invalid field name returns an error or empty results if the field is not recognized by Crustdata
- Empty or null query with a field that does not support top-values mode may return no results
- Limit exceeding 100 is rejected by schema validation
- Network or proxy errors from the WithZero/ZeroClick layer may return 402 or 5xx
- Payment failure via ZeroClick results in request not being proxied to Crustdata

## How this service works

Create media, research companies and people, publish to the web, remember context, deploy apps, and schedule work—on demand, without vendor accounts or API keys. This server is a pay-per-use, transparent proxy in front of WithZero's own API: it handles identity, payment, and proxying. Agents can purchase autonomously or with their human's approval. This document is the source of truth for agents: it lists the complete verified paid surface with each operation's live price in its x-payment-info. Endpoints not listed here are not part of the supported catalog. The live catalog at /manifest.json is authoritative for prices and any free included units (prices[].includedUnits) - some meters include free usage per account before any charge.

## Output

A list of autocomplete suggestion strings matching the partial query for the specified Crustdata job search field, up to the requested limit. Useful for populating dropdowns, validating field values, or exploring available options in Crustdata's job search taxonomy.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "field": {
   "type": "string",
   "example": "title",
   "minLength": 1,
   "description": "Job search field to autocomplete, using Crustdata job-search field names or documented aliases."
  },
  "limit": {
   "type": "integer",
   "example": 10,
   "maximum": 100,
   "minimum": 1,
   "description": "Maximum suggestions to return."
  },
  "query": {
   "type": "string",
   "example": "Software",
   "description": "Partial value to match. Use an empty string for top values when supported."
  }
 }
}
```

## More

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