# Aient Telemetry Health Summary

> Aient Telemetry Health Summary is a paid API for AI agents from aient.ai, paid per call via x402, $0.005000/call, status unknown (last checked 2026-09-15).

Returns a consolidated service-health summary across all monitored services, including error rates and p50/p95/p99 latency percentiles with a 24-hour trend, in a single call.

## Facts

- Endpoint: GET https://aient.ai/x402/telemetry/health
- Price: $0.005000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aient-ai-f08c3615
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MAh2bt1qmgyrJVVR9wMHE

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 aient-ai-f08c3615
```

Example prompt: Pull the current health summary for all my Aient-monitored services — I want to see error rates and p50/p95/p99 latencies, looking at the window from 2025-01-01T00:00:00Z to now.

## When to prefer this

Use this endpoint when you need a quick, unified health snapshot across all services in one call — especially for dashboards, alerting agents, or status checks where you want error rates and latency percentiles without querying traces or logs directly. Prefer this over the trace/log search endpoints when you need aggregated health metrics rather than raw span-level data.

## Known failure modes

- No monitored services configured — empty services array returned
- Invalid date-time format for since/until parameters — 400 Bad Request
- Authentication/payment failure — 402 Payment Required
- since is after until — 400 Bad Request or empty result
- Service temporarily unavailable — 503 or timeout

## How this service works

Get a concise service-health summary across your monitored services with error rate, p50/p95/p99 latency, and 24h trend. One call, no joins.

## Output

An array of service health objects, each containing the service name, current error rate, p50/p95/p99 latency values, and a 24-hour trend indicator — all aggregated into a single response without requiring further joins.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "since": {
       "type": "string",
       "format": "date-time"
      },
      "until": {
       "type": "string",
       "format": "date-time"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "services"
     ],
     "properties": {
      "services": {
       "type": "array",
       "items": {
        "type": "object"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aient-ai-f08c3615/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aient.ai](https://www.zero.xyz/host/aient.ai/llms.txt)
