# Crustdata Role-Cluster Decision-Maker Search

> Crustdata Role-Cluster Decision-Maker Search is a paid API for AI agents from crustdata.withzero.xyz, paid per call via MPP, $0.003/call, status unknown (last checked 2026-09-15).

Finds founders, executives, GTM, product, technical, or partnerships contacts at a specific company using Crustdata person/search role-cluster filters

## Facts

- Endpoint: POST https://crustdata.withzero.xyz/api/v1/person/search/role-cluster
- Price: $0.003/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Provider: crustdata.withzero.xyz
- Website: https://crustdata.withzero.xyz
- Canonical page: https://www.zero.xyz/c/crustdata-withzero-xyz-crustdata-role-cluster-decision-maker-search-9fbf08ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qbx2jnuLvKGEVonDjVkX2

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-role-cluster-decision-maker-search-9fbf08ef -d '<json body>'
```

Example prompt: Find the top decision makers at browserbase.com using the decision_makers role cluster and return up to 10 profiles with their current job titles and experience history.

## When to prefer this

Use this endpoint when you need to quickly find role-typed contacts (executives, founders, GTM, product, technical, or partnerships) at a specific known company rather than running a broad person search with manual title filters. Prefer it over the generic PersonDB search route when you want pre-built role cluster logic and don't want to construct complex nested title filters yourself. Best for ABM workflows targeting specific accounts.

## Known failure modes

- Upstream Crustdata API error — settles $0 USDC, returns error details in data field
- No profiles found matching role cluster and company filters — empty data array returned
- Invalid role_cluster enum value — request rejected with validation error
- Neither company_domain, company_name, nor company_professional_network_profile_url provided — missing required company identifier
- limit exceeds 25 — request rejected by schema validation
- Company domain does not match any known Crustdata company — empty result set

## How this service works

Decision-maker helper route: find founders, executives, GTM, product, technical, partnerships, or other role-cluster candidates at one current employer using Crustdata person/search nested filters. Returns raw Crustdata people profiles with basic_profile, social_handles, and experience rows by default so callers can inspect profile URLs and matching current employment. Default pricing is $0.10 per Crustdata credit with a $0.01 minimum successful-call settlement. Upstream Crustdata errors settle $0. Priced like PersonDB search at 0.03 Crustdata credits per returned profile.

## Output

Returns raw Crustdata people profiles including experience rows showing current employment, plus billing metadata showing credits used, USDC settled, and per-credit pricing. Up to 25 profiles per call depending on the limit parameter.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "example": {
  "limit": 10,
  "role_cluster": "decision_makers",
  "company_domain": "browserbase.com"
 },
 "required": [
  "role_cluster"
 ],
 "properties": {
  "limit": {
   "type": "integer",
   "maximum": 25,
   "minimum": 1,
   "description": "Maximum profiles to return. Defaults to 10; max 25."
  },
  "fields": {
   "type": "array",
   "items": {
    "type": "string",
    "minLength": 1
   },
   "description": "Crustdata response fields or sections to return. Defaults to basic_profile, social_handles, and experience so callers can inspect current-employment rows and profile URLs."
  },
  "company_name": {
   "type": "string",
   "minLength": 1,
   "description": "Current employer company name when a domain or professional-network URL is not available."
  },
  "role_cluster": {
   "enum": [
    "decision_makers",
    "executive_founder",
    "product_growth_gtm",
    "technical_platform_api_security",
    "partnerships_ecosystem_devrel"
   ],
   "type": "string",
   "default": "decision_makers",
   "description": "Motion-oriented role cluster to search. Defaults to decision_makers."
  },
  "company_domain": {
   "type": "string",
   "minLength": 1,
   "description": "Current employer website domain, e.g. browserbase.com."
  },
  "company_professional_network_profile_url": {
   "type": "string",
   "format": "uri",
   "description": "Exact current employer professional-network company profile URL."
  }
 },
 "additionalProperties": false
}
```

## 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-role-cluster-decision-maker-search-9fbf08ef/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)
