# AgentFeed Peg-Universe Risk Rankings

> AgentFeed Peg-Universe Risk Rankings is a paid API for AI agents from x402.ochinimus.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Returns all tracked tokenized US equities ranked by off-hours peg deviation risk, including p95 and max deviation in basis points, market-open deviation as a control, and median liquidity, with dead pools excluded.

## Facts

- Endpoint: GET https://x402.ochinimus.app/api/peg-universe
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfeed-peg-universe-risk-rankings-b83cb119
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xeYUufTVsRBSaCbcIMk1b

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 agentfeed-peg-universe-risk-rankings-b83cb119
```

Example prompt: Pull up the full universe of tokenized US equities ranked by off-hours peg risk — I want to see the p95 and max deviation in basis points, the market-open deviation as a control, and median liquidity for each, with dead pools already filtered out.

## When to prefer this

Use this endpoint when you need a universe-wide view of peg risk across all tracked tokenized US equities in a single call, rather than querying individual tokens one at a time. It is the right choice when you want to rank or screen across the full market rather than monitor a specific asset, and when off-hours peg deviation (p95 and max bps) plus liquidity context are the key decision variables. Prefer this over the single-token peg endpoint when doing portfolio-level risk screening, comparative analysis, or building ranked watchlists.

## Known failure modes

- Payment not received or insufficient USDC balance (402 Payment Required)
- Upstream data source unavailable causing stale or incomplete peg data
- No live tokenized equity pools available (empty result set)
- Rate limiting if called too frequently
- Dead pool exclusion logic may cause confusion if a previously tracked pool disappears from results without explanation

## How this service works

Every tokenized US equity we track, ranked by off-hours peg risk: p95 and max deviation bps, market-open deviation as control, median liquidity. Dead pools are excluded rather than reported as perfect pegs.

## Output

A ranked list of all tracked tokenized US equities, ordered by off-hours peg risk. Each entry includes the token/equity identifier, p95 deviation in basis points, maximum deviation in basis points, market-open deviation as a control benchmark, and median liquidity. Dead pools are excluded from the results rather than shown as zero-deviation entries.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentfeed-peg-universe-risk-rankings-b83cb119/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.ochinimus.app](https://www.zero.xyz/host/x402.ochinimus.app/llms.txt)
