# Agent Internet Runtime Trust Report

> Agent Internet Runtime Trust Report is a paid API for AI agents from api.agentinternetruntime.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns trust verification data for a specified domain, assessing its credibility and safety for agent interactions

## Facts

- Endpoint: POST https://api.agentinternetruntime.com/v1/trust-report
- 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/api-agentinternetruntime-com-2d9270e8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WbtbTbHjFSQi1_nvIwZTl

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 api-agentinternetruntime-com-2d9270e8 -d '<json body>'
```

Example prompt: Can you pull up the trust verification report for api.someprovider.com before I let my agent start calling it? I want to know if the domain checks out as safe and legitimate.

## When to prefer this

Use this endpoint when an AI agent needs to verify the trustworthiness of a domain before interacting with it — especially useful in agentic workflows where the agent is about to call an unknown or third-party API. Prefer this over generic WHOIS or DNS lookups when you need a structured trust score specifically designed for agentic internet use cases.

## Known failure modes

- Invalid or malformed domain name returns validation error
- Domain not found in trust database returns empty or low-confidence report
- Payment of 0.001 USDC not provided or rejected via x402 protocol
- Rate limiting if too many queries submitted in short succession
- Network timeout if domain lookup takes too long

## How this service works

Query trust verification data for a domain (1 domain)

## Output

Returns a trust report object containing verification data for the queried domain, likely including a trust score, reputation signals, safety indicators, and any flags that indicate whether the domain is credible and safe for agent interactions.

## Example request

```json
{
 "domain": "example.com"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string"
  },
  "domains": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "maxItems": 20
  },
  "include": {
   "type": "array",
   "items": {
    "type": "string"
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "badges",
  "domain",
  "health",
  "usable",
  "lineage",
  "success",
  "breakdown",
  "confidence",
  "risk_flags",
  "updated_at",
  "unified_score",
  "evidence_count",
  "freshness_score",
  "autonomous_payment_safe"
 ],
 "properties": {
  "badges": {
   "type": "array",
   "items": {
    "type": "unknown"
   }
  },
  "domain": {
   "type": "string"
  },
  "health": {
   "type": "object",
   "required": [
    "success_rate",
    "failure_count",
    "success_count",
    "scoring_window",
    "interaction_count"
   ],
   "properties": {
    "success_rate": {
     "type": "number"
    },
    "failure_count": {
     "type": "number"
    },
    "success_count": {
     "type": "number"
    },
    "scoring_window": {
     "type": "string"
    },
    "interaction_count": {
     "type": "number"
    }
   }
  },
  "usable": {
   "type": "boolean"
  },
  "lineage": {
   "type": "null"
  },
  "success": {
   "type": "boolean"
  },
  "breakdown": {
   "type": "object",
   "required": [
    "failureCount",
    "selectorHits",
    "successCount",
    "selectorReports",
    "actionReliability",
    "selectorStability",
    "totalInteractions"
   ],
   "properties": {
    "failureCount": {
     "type": "number"
    },
    "selectorHits": {
     "type": "number"
    },
    "successCount": {
     "type": "number"
    },
    "selectorReports": {
     "type": "number"
    },
    "actionReliability": {
     "type": "number"
    },
    "selectorStability": {
     "type": "number"
    },
    "totalInteractions": {
     "type": "number"
    }
   }
  },
  "confidence": {
   "type": "number"
  },
  "risk_flags": {
   "type": "array",
   "items": {
    "type": "unknown"
   }
  },
  "updated_at": {
   "type": "string"
  },
  "unified_score": {
   "type": "number"
  },
  "evidence_count": {
   "type": "number"
  },
  "freshness_score": {
   "type": "null"
  },
  "autonomous_payment_safe": {
   "type": "null"
  }
 }
}
```

## More

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