# Reservation Deposit & Cancellation Policy Gate (K-2SO)

> Reservation Deposit & Cancellation Policy Gate (K-2SO) is a paid API for AI agents from k2so-8080.on.ascii.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns a structured decision procedure for agents evaluating whether to proceed with a reservation deposit, hold, or prepayment — including cancellation window checks, refundability, no-show penalties, and kill criteria.

## Facts

- Endpoint: GET https://k2so-8080.on.ascii.dev/api/services/reservation-deposit-and-cancellation-policy-gate
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/reservation-deposit-cancellation-policy-gate-k-2so-99e4d1c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JmwapGtmeKJ1FgheoQ4x6

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 reservation-deposit-cancellation-policy-gate-k-2so-99e4d1c6
```

Example prompt: Before you confirm this restaurant reservation and pay the $25 deposit, check if the cancellation policy is acceptable — I need to know if it's a hold or a full prepay, what the cancellation window is, whether it's refundable, and whether you should kill the booking if the terms look bad.

## When to prefer this

Use this endpoint when an autonomous agent is about to commit to a real-world reservation payment (restaurant, hotel, appointment) and needs a structured, blunt go/no-go decision on whether the deposit and cancellation terms are acceptable before settling funds via x402. Prefer this over generic policy lookup when you need kill criteria, hold-vs-prepay classification, and no-show penalty assessment bundled into a single actionable brief — especially when merchant terms may have shifted between quote and checkout.

## Known failure modes

- Payment not settled — agent receives 402 response requiring USDC payment before content is returned
- Invalid query parameters — unsupported enum values for 'meta' or malformed 'topic' field
- Merchant terms too ambiguous — brief may note inability to classify with confidence
- LLM generation failure — 'ok: false' with no brief returned
- Topic override not recognized — fallback to default reservation deposit procedure

## How this service works

Paid agent-facing brief on Reservation deposit and cancellation policy gate for agents booking real-world services (restaurant tables, appointments, hotel rooms) through x402: classify deposit versus hold versus full prepay, verify cancellation window and refundability before settling, no-show penalty check, hold release semantics, kill criteria when merchant has no cancellation path or changes terms between quote and settle. Blunt decision procedure, not marketing.

## Output

A paid decision-procedure brief containing: deposit classification (hold vs. prepay vs. full prepay), cancellation window evaluation, refundability verdict, no-show penalty assessment, hold release semantics, and explicit kill criteria if the merchant lacks a cancellation path or changed terms between quote and settle. Returned as structured JSON with an 'ok' boolean, prose 'brief' field, model attribution, and ISO-8601 generation timestamp.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "meta": {
       "enum": [
        "0",
        "1"
       ],
       "type": "string",
       "description": "Set to 1 for free metadata JSON (no payment required)"
      },
      "topic": {
       "type": "string",
       "description": "Optional topic override for the decision procedure"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "Reservation deposit and cancellation policy gate for agents booking re paid response",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "ok",
      "paid",
      "service",
      "provider",
      "result"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "paid": {
       "type": "boolean"
      },
      "result": {
       "type": "object",
       "required": [
        "ok",
        "service"
       ],
       "properties": {
        "ok": {
         "type": "boolean",
         "description": "Handler success"
        },
        "brief": {
         "type": "string",
         "description": "Decision procedure prose for agents"
        },
        "model": {
         "type": "string"
        },
        "topic": {
         "type": "string"
        },
        "service": {
         "type": "string",
         "description": "Service slug"
        },
        "procedure": {
         "type": "string"
        },
        "generatedAt": {
         "type": "string",
         "description": "ISO-8601 timestamp"
        },
        "generationSource": {
         "enum": [
          "llm",
          "reasoning",
          "deterministic"
         ],
         "type": "string"
        }
       }
      },
      "payment": {
       "type": "object",
       "properties": {
        "code": {
         "type": "string"
        },
        "payer": {
         "type": "string"
        },
        "detail": {
         
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/reservation-deposit-cancellation-policy-gate-k-2so-99e4d1c6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from k2so-8080.on.ascii.dev](https://www.zero.xyz/host/k2so-8080.on.ascii.dev/llms.txt)
