# SameDayDesk Agent Discoverability Audit

> SameDayDesk Agent Discoverability Audit is a paid API for AI agents from agents.samedaydesk.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Audits how discoverable a given API endpoint is across agent marketplaces and registries, reporting rank, price consistency, and identity observations across up to 10 catalog sources.

## Facts

- Endpoint: GET https://agents.samedaydesk.com/distribution/agent-discoverability-audit
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/samedaydesk-agent-discoverability-audit-391502f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BoZdjRDomzS9HYEaK2Z9h

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 samedaydesk-agent-discoverability-audit-391502f0
```

Example prompt: Run a discoverability audit on my /extract route at agents.samedaydesk.com — the intent is 'extract a public web page into structured JSON', the expected price is $0.005 USDC, and tell me how it ranks across agent catalogs and whether the price and identity are consistent.

## When to prefer this

Use this endpoint when you need a brand-blind, multi-registry audit of how discoverable a specific API route is to AI agents — particularly when you want objective evidence of rank, price consistency, and identity canonicality across sources including Coinbase Bazaar. Prefer this over manual registry lookups or single-source checks when you need a consolidated discoverability report with next-action guidance. Not suited for real-time monitoring (it's point-in-time) or for discovering third-party endpoints you don't control.

## Known failure modes

- Target route not found in any catalog — returns targetFound: false for all sources
- Price drift detected — observedPricesAtomic differs from expectedPriceAtomic in one or more sources
- Identity conflict — one or more sources (e.g. agent402-router) report a non-canonical identity basis
- Endpoint ranked below top 3 — findings include target_not_top_three code
- Malformed input URL or route — may return validation error or empty source results
- Catalog source timeout — individual source status may show error while others succeed

## How this service works

Deterministic agent APIs for web and company intelligence, repository security, agent-work economics, machine-service discoverability, payment preflight and settlement proof, wallet context, and Morpho decision evidence. Pay per call through Base x402 or native MPP, with a Circle Gateway Nanopayments path for gasless batched USDC.

## Output

Returns a structured JSON report including: per-source discoverability status (found/not found, rank, price match, identity observation), a cross-source summary (how many sources found the target, price reference, drift counts, identity conflict sources), a findings list with actionable codes, recommended next actions, version info, and a generated-at timestamp. Does not fetch the target endpoint or send payments.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "origin",
      "intent"
     ],
     "properties": {
      "payTo": {
       "type": "string",
       "pattern": "^0x[0-9a-fA-F]{40}$",
       "description": "Optional EVM payTo used to identify service aliases."
      },
      "route": {
       "type": "string",
       "pattern": "^/[^?#]*$",
       "description": "Optional exact expected path."
      },
      "intent": {
       "type": "string",
       "maxLength": 500,
       "minLength": 20,
       "description": "Brand-blind capability description. Do not include the target hostname."
      },
      "origin": {
       "type": "string",
       "maxLength": 253,
       "minLength": 9,
       "description": "Public HTTPS service origin with no path, query, fragment, or credentials."
      },
      "runtimeUrl": {
       "type": "string",
       "format": "uri",
       "maxLength": 2048,
       "description": "Optional exact same-origin HTTPS GET URL whose unsigned x402 or MPP offer supplies the runtime price reference. Requires route and an exactly matching pathname."
      },
      "expectedPriceUsd": {
       "type": "number",
       "maximum": 1000000,
       "minimum": 0,
       "multipleOf": 0.000001,
       "description": "Optional exact route price expected by the caller. A coherent runtimeUrl offer takes precedence and caller drift is reported."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ok",
      "product",
      "version",
      "generatedAt",
      "input",
      "summary",
      "sources",
      "runtimeOfferAudit",
      "findings",
      "nextActions",
      "method",
      "safety",
      "boundary"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "input": {
       "type": "object"
      },
      "method": {
       "type": "string"
      },
      "safety": {
       "type": "object"
      },
      "product"
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "input": {
   "route": "/extract",
   "intent": "extract a public web page into structured JSON metadata headings links and JSON-LD",
   "origin": "https://agents.samedaydesk.com",
   "runtimeUrl": "https://agents.samedaydesk.com/extract?url=https%3A%2F%2Fexample.com",
   "expectedPriceUsd": 0.005,
   "expectedPriceAtomic": "5000"
  },
  "method": "Brand-blind point-in-time catalog query with registry-native ordering.",
  "safety": {
   "credentialsUsed": false,
   "targetOriginFetched": false,
   "paymentSentToCatalogs": false
  },
  "product": "samedaydesk-agent-discoverability-audit",
  "sources": {
   "coinbase-bazaar": {
    "status": "ok",
    "targetFound": true,
    "bestTargetRank": 9,
    "priceObservation": {
     "status": "matched",
     "expectedPriceAtomic": "5000",
     "observedPricesAtomic": [
      "5000"
     ]
    },
    "identityObservation": {
     "status": "canonical",
     "decision": "canonical",
     "aliasOrigins": [],
     "identityBasis": "agent-payment-policy@0.8.0",
     "schemaVersion": "agent-payment-policy.listing-identity-report.v1",
     "ownershipProven": false,
     "evidenceBoundary": "An observed record uses the caller-supplied canonical origin. This does not prove marketplace ownership or control.",
     "aliasCandidateCount": 0,
     "canonicalRecordCount": 1,
     "exactRouteRecordCount": 1,
     "canonicalOriginMatched": true
    }
   }
  },
  "summary": {
   "sourceCount": 10,
   "priceReference": {
    "basis": "live_unsigned_offer",
    "amountUsd": 0.005,
    "protocols": [
     "mpp",
     "x402"
    ],
    "amountAtomic": "5000"
   },
   "sourceFamilyCount": 9,
   "availableSourceCount": 10,
   "targetFoundSourceCount": 4,
   "driftedPriceSourceCount": 1,
   "identityConflictSources": [
    "agent402-router"
   ],
   "matchedPriceSourceCount": 3,
   "identityConflictSourceCount": 1,
   "targetFoundSourceFamilyCount": 4,
   "expectedRouteFoundSourceCount": 4,
   "identityObservationSourceCount": 10
  },
  "version": "1.11.0",
  "boundary": "Point-in-time discovery evidence; not buyer demand, conversion, reliability, or future-rank proof.",
  "findings": [
   {
    "code": "target_not_top_three",
    "source": "coinbase-bazaar"
   }
  ],
  "generatedAt": "2026-08-09T00:00:00.000Z",
  "nextActions": [
   {
    "action": "clarify_semantic_description",
    "evidence": "target ranked below three competitors"
   }
  ],
  "runtimeOfferAudit": {
   "status": "ok",

… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/samedaydesk-agent-discoverability-audit-391502f0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.samedaydesk.com](https://www.zero.xyz/host/agents.samedaydesk.com/llms.txt)
