$0.03
per call · USD Coin on Base
Assess an OpenAPI description for autonomous-agent usability.
Endpoint
POST https://api.vrsai.tech/v1/capabilities/openapi_agent_readiness3
Calls / 30d
2
Unique payers / 30d
Sep 3
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://api.vrsai.tech/v1/capabilities/openapi_agent_readiness", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"document": {
"info": {
"title": "Status API",
"version": "1.0.0"
},
"openapi": "3.1.0",
"paths": {
"/status": {
"get": {
"description": "Return current service status.",
"operationId": "getStatus",
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"properties": {
"status": {
"type": "string"
}
},
"required": [
"status"
],
"type": "object"
}
}
},
"description": "Current status."
}
}
}
}
},
"servers": [
{
"url": "https://status.example.org"
}
]
}
}),
});
const data = await res.json();curl -X POST \
"https://api.vrsai.tech/v1/capabilities/openapi_agent_readiness" \
-H "Content-Type: application/json" \
-d '{"document":{"info":{"title":"Status API","version":"1.0.0"},"openapi":"3.1.0","paths":{"/status":{"get":{"description":"Return current service status.","operationId":"getStatus","responses":{"200":{"content":{"application/json":{"schema":{"properties":{"status":{"type":"string"}},"required":["status"],"type":"object"}}},"description":"Current status."}}}}},"servers":[{"url":"https://status.example.org"}]}}' \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"dimensions": [
{
"id": "structure_and_version",
"max_score": 15,
"score": 15
},
{
"id": "operation_semantics",
"max_score": 20,
"score": 20
},
{
"id": "request_contracts",
"max_score": 20,
"score": 20
},
{
"id": "response_contracts",
"max_score": 20,
"score": 20
},
{
"id": "authentication_and_access",
"max_score": 10,
"score": 10
},
{
"id": "machine_operability",
"max_score": 15,
"score": 15
}
],
"findings": [],
"openapi_version": "3.1.0",
"ruleset_version": "1.1.1",
"score": 100,
"summary": {
"findings": 0,
"findings_truncated": false,
"operations": 1,
"paths": 1,
"schemas": 0
},
"verdict": "ready"
}Payment details
0x6746dff7bdb1ed4940dbe50024795ad97cba09afUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of AI & Inference and the homepage with a featured placement.
More from vrsai & similar services
vrsai · Capabilities Package Install Preflight
api.vrsai.tech
Check an exact npm or PyPI package version immediately before installation using current registry, vulnerability, malicious-package, withdrawal/deprecation, and verified provenance evidence. Returns ALLOW, REVIEW, BLOCK, or UNKNOWN with machine-readable reasons.
vrsai · Capabilities SQL Preflight
api.vrsai.tech
Check PostgreSQL SQL immediately before execution to prevent destructive or unsafe database changes by AI agents and automated systems.
vrsai · Capabilities Decision Optimization
api.vrsai.tech
Choose the lowest-cost or highest-value feasible allocation, assignment, selection, or resource mix from caller-supplied options, capacities, budgets, and eligibility rules, with independently verified feasibility evidence and solver optimality/gap information.