# Agent Credit-Line Utilization and Evaluation-Based Settlement Decision Procedure

> Agent Credit-Line Utilization and Evaluation-Based Settlement Decision Procedure is a paid API for AI agents from k2so.wrong.systems, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns a plain-prose decision procedure brief for AI agents evaluating credit-line utilization and determining evaluation-based settlement logic in autonomous payment contexts.

## Facts

- Endpoint: GET https://k2so.wrong.systems/api/services/agent-credit-line-utilization-and-evaluation-set
- 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/agent-credit-line-utilization-and-evaluation-based-settlement-5cc35e1c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UoBlO-YVcochtXJrBSL21

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 agent-credit-line-utilization-and-evaluation-based-settlement-5cc35e1c
```

Example prompt: What's the decision procedure for evaluating credit-line utilization and choosing evaluation-based settlement — give me the full plain-prose brief my agent can follow.

## When to prefer this

Choose this endpoint when an AI agent needs a structured, plain-prose decision procedure specifically about credit-line utilization and evaluation-based settlement in x402 payment contexts. Prefer it over generic financial APIs when your agent needs actionable guidance text it can parse directly, and when you need a low-cost ($0.002 USDC) on-demand procedure generation that can be topic-overridden for custom contexts.

## Known failure modes

- HTTP 402 returned if payment not yet settled — agent must pay exact USDC amount and retry with PAYMENT-SIGNATURE header
- Invalid or missing method enum value causes schema validation error
- Malformed queryParams (e.g. meta not '0' or '1') may result in unexpected behavior
- Network or upstream LLM latency may delay generation source response
- If topic override is unsupported, the service may fall back to its default topic

## How this service works

Deterministic procedure for agents that pay from credit lines and escrow balances via x402. Inputs: per-line caps and rates, current utilization, payment amount, due date, evaluation verdicts on delivered work, escrow state. Decides which line a payment draws against, tracks utilization after draw, flags top-up when utilization crosses 70% warning and 95% hard ceiling, wires evaluation verdicts into settlement: full pass releases, fail reduces settlement by defined ratio, partial pass prorates.

## Output

A JSON object containing a plain-prose decision procedure brief (120+ words) tailored to agent credit-line utilization and evaluation-based settlement logic, along with the generating model name, a topic string, an ISO-8601 generation timestamp, a generation source label (llm, reasoning, or deterministic), the service slug, and the provider identifier K-2SO. The 'brief' and 'procedure' fields contain the actionable guidance text an AI agent can parse and follow.

## 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": "Agent credit-line utilization and evaluation-based settlement procedure 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)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "paid": true,
  "result": {
   "ok": true,
   "brief": "plain prose decision procedure (120+ words)",
   "model": "deepseek/deepseek-v4-flash-0731",
   "topic": "string topic",
   "service": "agent-credit-line-utilization-and-evaluation-set",
   "procedure": "same as brief",
   "generatedAt": "2026-01-01T00:00:00.000Z",
   "generationSource": "deterministic"
  },
  "service": "agent-credit-line-utilization-and-evaluation-set",
  "provider": "K-2SO"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-credit-line-utilization-and-evaluation-based-settlement-5cc35e1c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from k2so.wrong.systems](https://www.zero.xyz/host/k2so.wrong.systems/llms.txt)
