# AgentBodega Agent Discoverability Check

> AgentBodega Agent Discoverability 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-13).

Analyzes a given URL and returns a scored report on how discoverable and agent-accessible that endpoint is, including checks like robots.txt and sitemap status.

## Facts

- Endpoint: POST https://agentbodega.store/api/check/agent-discoverability
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentbodega-agent-discoverability-check-0a8f571e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WNWKvA638AePl2K328z_6

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-discoverability-check-0a8f571e -d '<json body>'
```

Example prompt: Can you run a discoverability check on https://myapi.example.com and tell me the score and which checks passed or failed?

## When to prefer this

Use this endpoint when you need a quick, scored audit of whether a URL or API endpoint is properly configured for discovery by AI agents — covering signals like robots.txt permissions and sitemap presence. Prefer this over manual inspection when you want a machine-readable score and structured check results, especially as part of a pre-launch checklist for agent-facing services.

## Known failure modes

- Invalid or unreachable URL returns an error or low score with failed checks
- Malformed URL input causes a 400-level error
- Target site blocks the checker, resulting in failed checks even if configuration is correct
- Timeout if the target URL is slow to respond

## How this service works

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

## Output

Returns an array of named check results (e.g. robots.txt, sitemap), each with a pass/fail status, plus a summary object containing a numeric discoverability score (0-100).

## 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": "robots.txt",
    "status": "pass"
   },
   {
    "name": "sitemap",
    "status": "pass"
   }
  ],
  "summary": {
   "score": 78
  }
 }
}
```

## More

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