# x402 Market Echo (CDP Facilitator Mode)

> x402 Market Echo (CDP Facilitator Mode) is a paid API for AI agents from x402-market-api.lien-studio-akiyama.workers.dev, paid per call via x402, $0.010000/call, status unknown (last checked 2026-09-14).

Echoes back an HTTP request payload, with payment settlement routed through the Coinbase CDP Facilitator, for testing x402 payment protocol discoverability and integration.

## Facts

- Endpoint: POST https://x402-market-api.lien-studio-akiyama.workers.dev/api/seller-4068b8fc/test-echo-cdp
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-market-echo-cdp-facilitator-mode-e953997e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dPye_g7pVcFEqhgqQFH3q

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 x402-market-echo-cdp-facilitator-mode-e953997e -d '<json body>'
```

Example prompt: Send a POST echo test through the x402 CDP facilitator endpoint — use a JSON body like {"hello": "world"} and confirm the payload comes back correctly.

## When to prefer this

Use this endpoint when you need to test or validate the x402 micropayment protocol with Coinbase CDP as the payment facilitator rather than self-verified on-chain settlement — particularly when testing Bazaar discoverability or confirming the corrected v2-spec PaymentPayload.extensions wire format works end-to-end.

## Known failure modes

- Payment not included or malformed x402 header returns 402 Payment Required
- Invalid body type (not json/form-data/text) returns validation error
- Missing required 'input' object returns schema validation error
- CDP facilitator unavailable causes payment settlement failure
- Non-POST/PUT/PATCH method returns method not allowed

## How this service works

Same echo endpoint as test-echo-prod, but settlement is routed through the Coinbase Facilitator instead of self-verified on-chain. Used to validate Coinbase Bazaar discoverability for x402-market listings.

## Output

Returns the echoed input body as received, confirming the x402 CDP-facilitated payment was processed and the endpoint is reachable and functioning correctly.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {},
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-market-echo-cdp-facilitator-mode-e953997e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-market-api.lien-studio-akiyama.workers.dev](https://www.zero.xyz/host/x402-market-api.lien-studio-akiyama.workers.dev/llms.txt)
