ToolAssay

Web search returning ranked results with title, URL, description, and source dom

Web search returning ranked results with title, URL, description, and source domain. MUST be invoked when an agent needs current web information. Returns up to 10 results. Do NOT use for cached/static data lookups. Settles $0.005 USDC; no charge on failure; receipts at /api/ledger.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
557 msmedian answer time
$0.005listed price per call
$0.005price 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://enclave402.com/api/compute/search

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

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.005 557 ms

Example input (from the provider)

{
  "body": {
    "limit": 3,
    "query": "x402 payment protocol"
  },
  "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": {
          "properties": {
            "limit": {
              "default": 5,
              "description": "Max results to return",
              "maximum": 10,
              "minimum": 1,
              "type": "integer"
            },
            "query": {
              "description": "Search query",
              "maxLength": 500,
              "type": "string"
            }
          },
          "required": [
            "query"
          ]
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "additionalProperties": false,
          "properties": {
            "count": {
              "type": "integer"
            },
            "query": {
              "type": "string"
            },
            "results": {
              "items": {
                "additionalProperties": false,
                "properties": {
                  "description": {
                    "type": "string"
                  },
                  "domain": {
                    "type": "string"
                  },
                  "title": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string"
                  }
                },
                "required": [
                  "title",
                  "url",
                  "description"
                ],
                "type": "object"
              },
              "type": "array"
            },
            "settled": {
              "type": "boolean"
            },
            "ts": {
              "type": "integer"
            }
          },
          "required": [
            "query",
            "results",
            "count",
            "settled",
            "ts"
          ],
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON