# AgentBodega Agent-Ready Badge Checker

> AgentBodega Agent-Ready Badge Checker is a paid API for AI agents from agentbodega.store, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Scores a given URL for agent-readiness and returns a numeric score, a verdict summary, and an embeddable SVG badge

## Facts

- Endpoint: POST https://agentbodega.store/api/badge/agent-ready
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbodega-agent-ready-badge-checker-cd6fb0b9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SKAc7rMA3Kb2a17z2999E

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 agentbodega-agent-ready-badge-checker-cd6fb0b9 -d '<json body>'
```

Example prompt: Check if https://myapi.example.com is agent-ready and give me the score, verdict, and an SVG badge I can embed in my README.

## When to prefer this

Choose this endpoint when you need a quick, quantified agent-readiness assessment of an API URL — especially when you want both a machine-readable score and a human-displayable SVG badge in a single call. Ideal for CI/CD launch gates, README badge generation, or pre-integration vetting of third-party APIs. Prefer it over manual inspection when you need a standardized verdict rather than raw endpoint introspection data.

## Known failure modes

- Invalid or unreachable URL returns an error or low score with a failed verdict
- Malformed JSON body results in a 400-level error
- Network timeout if the target URL is slow to respond
- Score may reflect incomplete inspection if the target endpoint lacks machine-readable metadata
- Payment failure (x402) prevents the call from being processed at all

## How this service works

Small x402-payable utility APIs for agents: endpoint inspection, launch checks, and hosted artifacts.

## Output

Returns a JSON object containing a numeric agent-readiness score (0–100), a summary object with a verdict string (e.g. 'agent-ready'), and a badgeSvg field containing an inline SVG element suitable for embedding in documentation or READMEs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "fields": [
      {
       "name": "url",
       "type": "string",
       "required": true
      },
      {
       "name": "scope",
       "type": "string",
       "required": false
      },
      {
       "name": "includeEvidence",
       "type": "boolean",
       "required": false
      }
     ],
     "required": [
      "url"
     ],
     "fieldCount": 3,
     "contentType": "application/json",
     "optionalPreview": [
      "scope",
      "includeEvidence"
     ],
     "omittedFieldCount": 0
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": 86,
  "summary": {
   "verdict": "agent-ready"
  },
  "badgeSvg": "<svg>...</svg>"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbodega-agent-ready-badge-checker-cd6fb0b9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentbodega.store](https://www.zero.xyz/host/agentbodega.store/llms.txt)
