# Datamancer Search

> Datamancer Search is a paid API for AI agents from agents.datamancer.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Executes a paid web or data search query and returns results via the Datamancer data tooling platform

## Facts

- Endpoint: GET https://agents.datamancer.io/api/v1/paid/search
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datamancer-search-9fcc100a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mpm1mz-Xtj8aHBkOIXO7X

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 datamancer-search-9fcc100a
```

Example prompt: Search Datamancer for 'electric vehicle charging stations' and return up to 20 results.

## When to prefer this

Choose this endpoint when you need to query Datamancer's proprietary data systems for structured records or information matching a keyword or phrase, especially when you need a fast, pay-per-call search without a subscription commitment. It is particularly suited for agents that need on-demand data lookups in Datamancer's curated datasets.

## Known failure modes

- Missing required 'q' query parameter returns a 400 validation error
- Payment not included or insufficient funds causes a 402 Payment Required response
- Query returns empty results if no records match
- Limit parameter exceeding allowed range may be clamped or rejected
- Rate limiting or service unavailability returns a 429 or 503 error

## How this service works

Datamancer agents API. Public-records warehouse.

## Output

A JSON object with an 'ok' boolean and an array of search result records matching the query string, up to the specified limit (default 50).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "example": "LIVE BY 5",
       "description": "Search query (name tokens; US-FL also accepts a Sunbiz document number)"
      },
      "limit": {
       "type": "integer",
       "default": 50
      },
      "jurisdiction": {
       "type": "string",
       "example": "US-FL",
       "description": "One live layer, e.g. US-FL or US-NY. Omit for US-FL. Unknown or not-live values return empty hits; search does not union states."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "hits": [
   {
    "id": "ent:US-FL:L19000228065",
    "name": "LIVE BY 5 LLC",
    "domain": "business_entities",
    "status": "active",
    "filing_id": "L19000228065"
   }
  ],
  "tier": "paid",
  "count": 1,
  "limit": 50,
  "query": "LIVE BY 5",
  "product": "entity_search"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datamancer-search-9fcc100a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.datamancer.io](https://www.zero.xyz/host/agents.datamancer.io/llms.txt)
