# Oblique Markets Agent-Readiness Audit

> Oblique Markets Agent-Readiness Audit is a paid API for AI agents from api.oblique.markets, paid per call via x402, $1/call, status unknown (last checked 2026-09-13).

Audits a domain for AI-agent discoverability by probing six well-known discovery surfaces, validating key fields, and returning a weighted 0–100 readiness score with fix-it recommendations

## Facts

- Endpoint: POST https://api.oblique.markets/api/v1/paid/agent-readiness-audit
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oblique-markets-agent-readiness-audit-24ae9731
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_088K8_CtYnPdXmvVY-7tM

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 oblique-markets-agent-readiness-audit-24ae9731 -d '<json body>'
```

Example prompt: Run an agent-readiness audit on example.com — probe all six discovery surfaces like x402.json, agent.json, and llms.txt, give me the weighted score out of 100, and tell me exactly what I need to fix.

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-surface agent-discoverability assessment of a domain rather than checking a single file manually. It is purpose-built for the agent-readiness use case, covering all six canonical discovery surfaces in one call with SSRF protection and a normalized score — ideal for developers preparing an API for AI agent consumption, for competitive benchmarking, or for automated CI checks on agent infrastructure.

## Known failure modes

- Domain not reachable or invalid — returns error if the domain cannot be resolved or normalized
- SSRF guard triggered — internal or reserved IP ranges are blocked and return an error
- All six discovery surfaces missing — score may be 0 with all recommendations flagged
- Malformed domain input — non-URL strings may fail normalization
- Rate limiting or payment failure — $1 USDC payment required per call via x402 protocol

## How this service works

Verify an AI Agent API’s x402, agent.json, OpenAPI, llms.txt, robots.txt, and MCP discovery surfaces; return a 0–100 score, missing fields, validation findings, and prioritized fixes.

## Output

Returns a weighted 0–100 agent-readiness score along with per-surface probe results for all six discovery endpoints (/.well-known/x402.json, /.well-known/agent.json, /openapi.json, /llms.txt, /robots.txt, /.well-known/mcp.json), key-field validation outcomes for each surface, and specific actionable fix-it recommendations for any failing or missing components.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "description": "Bare domain (example.com) or https URL — normalized to the https origin"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": 60,
  "checks": {
   "mcp": {
    "notes": [],
    "parses": null,
    "present": false,
    "http_status": 404
   },
   "x402": {
    "notes": [
     "12 paid endpoint(s) advertised"
    ],
    "parses": true,
    "present": true,
    "http_status": 200
   },
   "openapi": {
    "notes": [],
    "parses": null,
    "present": false,
    "http_status": 404
   },
   "llms_txt": {
    "notes": [],
    "parses": null,
    "present": true,
    "http_status": 200
   },
   "agent_json": {
    "notes": [],
    "parses": true,
    "present": true,
    "http_status": 200
   },
   "robots_txt": {
    "notes": [],
    "parses": null,
    "present": false,
    "http_status": 404
   }
  },
  "domain": "https://api.example-seller.com",
  "audited_at": "2026-08-10T12:00:00.000Z",
  "recommendations": [
   "Serve /openapi.json describing your API surface — agents plan tool calls from it (worth 20 points)",
   "Add /robots.txt with a Sitemap line and explicit AI-crawler policy (worth 10 points)",
   "Publish /.well-known/mcp.json pointing at your MCP server so tool-using agents can connect directly (worth 10 points)"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oblique-markets-agent-readiness-audit-24ae9731/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.oblique.markets](https://www.zero.xyz/host/api.oblique.markets/llms.txt)
