# AnalogHubris Trust Index Search

> AnalogHubris Trust Index Search is a paid API for AI agents from api.analoghubris.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Search and filter ranked x402 API endpoints by trust score, grade, spam status, and domain to discover high-quality micropayment-enabled APIs

## Facts

- Endpoint: POST https://api.analoghubris.com/v0/search
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/analoghubris-trust-index-search-106a0a35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N821qpMVs9wZpJeocY979

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 analoghubris-trust-index-search-106a0a35 -d '<json body>'
```

Example prompt: Search the AnalogHubris Trust Index for x402 endpoints related to 'weather data', filter to grade A or better with a minimum trust score of 75, exclude any spam, and return the top 10 results.

## When to prefer this

Use this endpoint when you need to discover, evaluate, or filter x402 micropayment-enabled API endpoints by trust quality. Ideal when building agent pipelines that require vetting third-party x402 APIs before calling them, or when searching for legitimate endpoints in a specific domain while excluding spam or low-quality providers.

## Known failure modes

- Invalid grade value returns 400 bad request
- min_score out of range (0-100) returns validation error
- limit exceeding 200 returns validation error
- No matching results returns empty list with 200 status
- Malformed query parameters return 400
- Payment not attached or insufficient returns 402

## Output

A ranked list of x402 API endpoints with trust scores (0-100), letter grades, spam flags, payTo integrity signals, and endpoint metadata — filtered and sorted according to the query parameters provided.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "description": "Free-text query"
      },
      "grade": {
       "type": "string",
       "description": "Letter grade filter"
      },
      "limit": {
       "type": "integer",
       "maximum": 200,
       "minimum": 1
      },
      "domain": {
       "type": "string",
       "description": "Domain substring"
      },
      "offset": {
       "type": "integer",
       "minimum": 0
      },
      "min_score": {
       "type": "integer",
       "maximum": 100,
       "minimum": 0,
       "description": "Minimum trust score 0-100"
      },
      "exclude_spam": {
       "type": "boolean"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/analoghubris-trust-index-search-106a0a35/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.analoghubris.com](https://www.zero.xyz/host/api.analoghubris.com/llms.txt)
