# vrsai OpenAPI Agent Readiness Assessor

> vrsai OpenAPI Agent Readiness Assessor is a paid API for AI agents from api.vrsai.tech, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Analyzes an OpenAPI description to score and report how well-suited it is for consumption by autonomous AI agents.

## Facts

- Endpoint: POST https://api.vrsai.tech/v1/capabilities/openapi_agent_readiness/versions/1.0.0/execute
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vrsai-openapi-agent-readiness-assessor-e3ccaaa5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TRJhs6XerM1OwdQwpC8ue

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 vrsai-openapi-agent-readiness-assessor-e3ccaaa5 -d '<json body>'
```

Example prompt: Can you assess this OpenAPI spec JSON for autonomous agent usability and tell me how ready it is for AI agents to consume it?

## When to prefer this

Choose this endpoint when you need a programmatic, objective assessment of whether an OpenAPI spec is consumable by autonomous AI agents — especially during API development, before publishing an API to an agentic marketplace, or when onboarding a third-party API into an agent pipeline. It is purpose-built for the agentic usability dimension, not general spec linting or standards compliance.

## Known failure modes

- Malformed or incomplete OpenAPI body causes validation failure
- Unsupported body type (non-json/form-data/text) returns error
- Missing required input fields (type, method, bodyType, body) returns 400-style error
- Payment not authorized or insufficient USDC balance causes 402 rejection
- Very large OpenAPI specs may time out or exceed payload limits

## How this service works

Assess an OpenAPI description for autonomous-agent usability.

## Output

Returns a structured assessment of the OpenAPI description's suitability for autonomous agent use, including a readiness score and specific feedback on usability gaps or strengths that affect how well AI agents can discover, understand, and call the API.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": 100,
  "summary": {
   "paths": 1,
   "schemas": 0,
   "findings": 0,
   "operations": 1,
   "findings_truncated": false
  },
  "verdict": "ready",
  "findings": [],
  "dimensions": [
   {
    "id": "structure_and_version",
    "score": 15,
    "max_score": 15
   },
   {
    "id": "operation_semantics",
    "score": 20,
    "max_score": 20
   },
   {
    "id": "request_contracts",
    "score": 20,
    "max_score": 20
   },
   {
    "id": "response_contracts",
    "score": 20,
    "max_score": 20
   },
   {
    "id": "authentication_and_access",
    "score": 10,
    "max_score": 10
   },
   {
    "id": "machine_operability",
    "score": 15,
    "max_score": 15
   }
  ],
  "openapi_version": "3.1.0",
  "ruleset_version": "1.1.1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vrsai-openapi-agent-readiness-assessor-e3ccaaa5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.vrsai.tech](https://www.zero.xyz/host/api.vrsai.tech/llms.txt)
