Core workflow route
Core workflow route: find a page of people and prospects from the cached Crustdata person dataset using provider-native filters, fields, sorts, cursor, aggregations, and limit. Default pricing is $0.10 per Crustdata credit with a $0.01 minimum successful-call settlement. Upstream Crustdata errors settle $0. PersonDB search is priced at 0.03 Crustdata credits per returned profile.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
615 msmedian answer time
$0.3listed price per call
$0.3price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://agents.withzero.xyz/api/v1/crustdata/person/search
| Category | Search and research |
|---|---|
| Provider host | agents.withzero.xyz |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.3 | 615 ms |
Example input (from the provider)
{
"body": {
"fields": [
"basic_profile.name",
"basic_profile.current_title",
"social_handles.professional_network_identifier.profile_url",
"experience.employment_details.current.name"
],
"filters": {
"conditions": [
{
"field": "experience.employment_details.current.company_website_domain",
"type": "=",
"value": "browserbase.com"
}
],
"op": "and"
},
"limit": 10
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": {},
"example": {
"fields": [
"basic_profile.name",
"basic_profile.current_title",
"social_handles.professional_network_identifier.profile_url",
"experience.employment_details.current.name"
],
"filters": {
"conditions": [
{
"field": "experience.employment_details.current.company_website_domain",
"type": "=",
"value": "browserbase.com"
}
],
"op": "and"
},
"limit": 10
},
"properties": {
"aggregations": {
"description": "Provider-native aggregation request for endpoints that support it.",
"example": {
"field": "taxonomy.professional_network_industry"
}
},
"cursor": {
"description": "Cursor returned by the previous page.",
"example": "eyJwYWdlIjoyfQ",
"minLength": 1,
"type": "string"
},
"fields": {
"description": "Response field sections or dot-paths to include.",
"example": [
"basic_info.name",
"basic_info.primary_domain",
"headcount.total"
],
"items": {
"minLength": 1,
"type": "string"
},
"type": "array"
},
"filters": {
"description": "Crustdata provider-native filter condition or condition group.",
"example": {
"conditions": [
{
"field": "basic_info.primary_domain",
"type": "=",
"value": "browserbase.com"
}
],
"op": "and"
}
},
"limit": {
"description": "Maximum records to return. Max 100.",
"example": 10,
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"preview": {
"description": "Return preview metadata when supported by the endpoint.",
"example": false,
"type": "boolean"
},
"sorts": {
"description": "Crustdata sort descriptors using the live API field/order contract.",
"example": [
{
"field": "headcount.total",
"order": "desc"
}
],
"items": {
"additionalProperties": {},
"properties": {
"field": {
"description": "Provider-native field path. The live 2025-11-01 API expects field even though some Crustdata examples use column.",
"example": "headcount.total",
"minLength": 1,
"type": "string"
},
"order": {
"description": "Sort direction.",
"enum": [
"asc",
"desc"
],
"example": "desc",
"type": "string"
}
},
"required": [
"field",
"order"
],
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}