# AgentBodega Agent Commerce Check

> AgentBodega Agent Commerce Check 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).

Runs a set of pre-launch readiness checks on a given URL to verify x402 payment compliance and agent-commerce compatibility, returning a scored report.

## Facts

- Endpoint: POST https://agentbodega.store/api/check/agent-commerce
- 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-commerce-check-15c230bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gNdOCdsWyndPd9JY2ubQe

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-commerce-check-15c230bf -d '<json body>'
```

Example prompt: Can you run an agent commerce launch check on https://myapi.example.com/pay and tell me whether it passes x402 compliance and what the overall readiness score is?

## When to prefer this

Use this endpoint when you need a quick, scored readiness assessment of whether a URL properly implements x402 agent-payment standards before launch or integration. Prefer it over manual inspection or generic HTTP probing tools when you specifically need x402/agent-commerce compliance signals and a numeric launch-readiness score.

## Known failure modes

- Target URL is unreachable or returns a network error, resulting in failed checks
- URL is malformed or missing, causing a 400-level validation error
- Target endpoint does not respond with x402 headers, causing most checks to fail with 'fail' status
- includeEvidence flag may return additional data but is optional and may not affect score if not supported
- Service itself may return a non-200 if the $0.01 USDC x402 payment is not completed

## How this service works

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

## Output

Returns an array of named checks (e.g. 'x402', 'payment hints') each with a pass/fail/neutral status, plus a summary object containing a numeric readiness score (0–100) indicating how well the target URL meets agent commerce and x402 requirements.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "fields": [
      {
       "name": "url",
       "type": "string",
       "required": true
      },
      {
       "name": "includeEvidence",
       "type": "boolean",
       "required": false
      }
     ],
     "required": [
      "url"
     ],
     "fieldCount": 2,
     "contentType": "application/json",
     "optionalPreview": [
      "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": {
  "checks": [
   {
    "name": "x402",
    "status": "pass"
   },
   {
    "name": "payment hints",
    "status": "neutral"
   }
  ],
  "summary": {
   "score": 70
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentbodega-agent-commerce-check-15c230bf/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)
