# Algorand ASA Payment Acceptance Screen

> Algorand ASA Payment Acceptance Screen 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-15).

Returns a structured decision procedure (accept, hold-with-conversion-cap, or reject) for an agent receiving an Algorand Standard Asset as payment, based on ASA risk factors like clawback, freeze, and supply controls.

## Facts

- Endpoint: GET https://k2so-8080.on.ascii.dev/api/services/agent-facing-decision-procedure-for-algorand-ass
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/algorand-asa-payment-acceptance-screen-a71e9194
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MzcoZalGUvHmszp2B-gID

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 algorand-asa-payment-acceptance-screen-a71e9194
```

Example prompt: Before I accept that Algorand Standard Asset as payment, run it through the ASA payment acceptance screen and tell me whether I should accept it, hold it with a conversion cap, or reject it and demand ALGO instead — especially flag any clawback or freeze risk.

## When to prefer this

Use this endpoint when an AI agent is on the receiving end of an Algorand Standard Asset payment and needs a structured, risk-aware decision before accepting. It is specifically designed for the ASA-as-payment scenario on Algorand — prefer it over generic blockchain lookup tools when you need an actionable accept/hold/reject verdict that accounts for clawback, freeze, and supply manipulation risks unique to ASAs.

## Known failure modes

- Payment required but not provided — returns 402 with payment instructions
- Invalid or missing input object — returns validation error
- ASA metadata unavailable or unresolvable — procedure may be incomplete
- Network timeout reaching Algorand node data — stale or missing supply info
- Topic override not recognized — falls back to default decision procedure

## How this service works

Decision procedure for an agent being offered an Algorand Standard Asset as payment, the receiving side of the transaction. Inspect the ASA before accepting: clawback address present means the issuer can claw funds back after receipt, freeze address can freeze your balance, reserve and manager accounts can mint or alter supply, default-frozen requires opt-in approval, check supply and metadata. Verdict thresholds for accept, hold with conversion cap, or reject and demand ALGO. Companion to the

## Output

A structured decision brief including an accept/hold-with-conversion-cap/reject verdict, prose explanation of the decision procedure, risk factors identified (clawback address, freeze address, reserve/manager accounts, default-frozen status, supply metadata), the model used, generation source (llm, reasoning, or deterministic), and an ISO-8601 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": "Algorand ASA payment acceptance screen 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": {
         "type": "string"
        },
    
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/algorand-asa-payment-acceptance-screen-a71e9194/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)
