# AnalogHubris Trust Index — Live URL Re-Probe

> AnalogHubris Trust Index — Live URL Re-Probe is a paid API for AI agents from api.analoghubris.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Performs a live re-probe of a specified public x402 endpoint URL and returns fresh trust/quality data for that endpoint

## Facts

- Endpoint: GET https://api.analoghubris.com/v0/live
- 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/analoghubris-trust-index-live-url-re-probe-50c4dea3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_US2CvDOPyy5B3zHaFQLUP

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-live-url-re-probe-50c4dea3
```

Example prompt: Can you run a live re-probe on this x402 endpoint right now — https://api.example.com/some-endpoint — using a GET request, and tell me the current AnalogHubris trust score and grade?

## When to prefer this

Use this endpoint when you need fresh, real-time trust data for a specific x402 endpoint rather than relying on a cached snapshot. Prefer this over the snapshot endpoint when the endpoint may have changed recently or when freshness of the trust assessment is critical for a decision.

## Known failure modes

- Invalid or unreachable URL returns an error or degraded probe result
- Non-x402 endpoints may return incomplete trust data
- Rate limiting or payment failure returns 402 error
- Malformed URL format causes schema validation rejection
- Target endpoint may block probe requests, resulting in failed or inconclusive result

## How this service works

RobotsShop Trust Index — live re-probe of one URL

## Output

Returns fresh trust index data for the specified x402 endpoint URL, including score, grade, spam signals, and payTo integrity assessment gathered from a live probe at call time rather than from a cached snapshot.

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "description": "Public x402 endpoint URL to re-probe"
      }
     }
    }
   },
   "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-live-url-re-probe-50c4dea3/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)
