# Aegis Trust History Lookup

> Aegis Trust History Lookup is a paid API for AI agents from aegis.borisinc.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves the historical trust score timeline and uptime percentage for a specific x402-payable API endpoint URL

## Facts

- Endpoint: GET https://aegis.borisinc.com/trust/history
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aegis-trust-history-lookup-f7186766
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Zd3mnrIu_m6oQ9zjJX7bW

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 aegis-trust-history-lookup-f7186766
```

Example prompt: Before I pay to use this API, can you pull the trust history for https://api.example.com/x402 on Aegis so I can see how its trust scores have trended and whether it has good uptime?

## When to prefer this

Use this endpoint when an AI agent needs to audit the trustworthiness of a specific x402-payable service before routing payments or procurement to it. Prefer this over generic uptime monitors when you need trust scores derived from real purchase history within the x402 agent economy, or when you need a timestamped audit trail of reliability rather than a single current score.

## Known failure modes

- URL not found in Aegis registry — returns empty history array
- Invalid or missing url query parameter — returns validation error
- No purchase history exists for the endpoint — trust_score entries may be absent
- Service temporarily unavailable — HTTP 5xx response
- Payment required but not provided — HTTP 402 response blocking the lookup

## How this service works

Search 2,400+ x402 services ranked by delivery-verified trust. Free discovery, paid trust checks, payment routing with failover. We buy from sellers to prove they deliver.

## Output

Returns a JSON object containing the queried URL, an array of timestamped trust score entries (each with a Unix timestamp and a trust score integer), and an uptime percentage figure — giving a complete historical reliability picture of the endpoint.

## 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"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://api.example.com/x402",
  "history": [
   {
    "ts": 1783000000,
    "trust_score": 80
   }
  ],
  "uptime_pct": 98.5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aegis-trust-history-lookup-f7186766/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aegis.borisinc.com](https://www.zero.xyz/host/aegis.borisinc.com/llms.txt)
