ToolAssay

Query-builder helper route

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

Answeringour last check, 2026-09-24
1 of 1checks answered this week
342 msmedian answer time
$0.01listed price per call
$0.01price 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/autocomplete

CategorySearch and research
Provider hostagents.withzero.xyz
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days5 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.01 342 ms

Example input (from the provider)

{
  "body": {
    "field": "basic_profile.country",
    "limit": 10,
    "query": "United"
  },
  "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": {
            "field": "basic_profile.country",
            "limit": 10,
            "query": "United"
          },
          "properties": {
            "field": {
              "description": "Person search field to autocomplete, using Crustdata-supported person autocomplete fields.",
              "example": "basic_profile.country",
              "minLength": 1,
              "type": "string"
            },
            "filters": {
              "description": "Optional provider-native filters to narrow suggestions.",
              "example": {
                "conditions": [
                  {
                    "field": "basic_info.primary_domain",
                    "type": "=",
                    "value": "browserbase.com"
                  }
                ],
                "op": "and"
              }
            },
            "limit": {
              "description": "Maximum suggestions to return.",
              "example": 10,
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            },
            "query": {
              "description": "Partial value to match.",
              "example": "United",
              "type": "string"
            }
          },
          "required": [
            "field"
          ],
          "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"
}

This page as JSON