# CrustData Search Filters List

> CrustData Search Filters List is a paid API for AI agents from api.auor.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns all possible filter values available for use in CrustData people search queries

## Facts

- Endpoint: GET https://api.auor.io/crustdata/v1/filters
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-auor-io-bdc0040d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0ZQeQsyD5e35Gwk961Sjy

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 api-auor-io-bdc0040d
```

Example prompt: What are all the available filter options I can use when searching for people through CrustData — like what values are valid for job title, industry, or location filters?

## When to prefer this

Use this endpoint before constructing a CrustData people search request to discover which filter values are valid and supported. Prefer this over guessing filter values or hardcoding them, especially when filter options may change over time or when the agent needs to validate user-supplied filter inputs against known enumerated values.

## Known failure modes

- Invalid or unrecognized query parameters return 400 Bad Request
- Payment not provided or insufficient results in 402 Payment Required
- Service unavailable returns 503
- Empty filter list returned if CrustData schema has no filters registered
- Rate limiting may return 429 Too Many Requests

## How this service works

Get a list of possible values for CrustData search filters

## Output

A list of available filter keys and their possible values that can be used as query parameters when calling the CrustData people search endpoint, enabling agents to build valid, constrained search requests.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "type": "industry",
   "query": "industry"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "$ref": "https://api.auor.io/schemas/crustdata/v1/filters/input.json",
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-auor-io-bdc0040d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.auor.io](https://www.zero.xyz/host/api.auor.io/llms.txt)
