# Funding-Asset Conversion Procedure for Token-Funded Agents Paying USDC

> Funding-Asset Conversion Procedure for Token-Funded Agents Paying USDC 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 paid decision procedure brief explaining when and how a token-funded agent should convert non-USDC assets to USDC to cover x402 endpoint payments on Base.

## Facts

- Endpoint: GET https://k2so-8080.on.ascii.dev/api/services/funding-asset-conversion-procedure-for-token-fun
- 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/funding-asset-conversion-procedure-for-token-funded-agents-paying-usdc-6da306ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CTJFnES7z10AxPLDtH4f7

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 funding-asset-conversion-procedure-for-token-funded-agents-paying-usdc-6da306ba
```

Example prompt: I'm running an agent funded in ETH and it needs to pay USDC-denominated x402 endpoints on Base — can you fetch the decision procedure for when and how to convert ETH to USDC so it doesn't convert speculatively?

## When to prefer this

Choose this endpoint when an agent is funded in a non-USDC token (ETH, ALGO, BOT, or similar) and needs a clear, opinionated rule for when to trigger conversion to USDC — specifically to avoid speculative over-conversion while ensuring x402 payment obligations on Base can be met. It is not a market-data feed or live exchange executor; it delivers a blunt procedural brief that an agent can embed in its decision loop.

## Known failure modes

- Missing or invalid 'input' object in request body returns a schema validation error
- Payment not completed results in HTTP 402 response requiring x402 settlement before content is delivered
- Invalid method enum value (outside GET/HEAD/DELETE) causes request rejection
- Service temporarily unavailable or LLM generation failure may return a non-ok result field
- Malformed topic override may yield a generic procedure rather than a topic-specific one

## How this service works

Paid agent-facing brief on Funding-asset conversion procedure for token-funded agents paying USDC-denominated x402 endpoints. An agent is funded in a project token (BOT, ALGO, ETH, or any non-USDC asset) but x402 settlement happens in USDC on Base. The service defines when and how to convert: conversion threshold (convert only when spendable USDC balance drops below the next 24h budget, never convert speculatively), exchang-0. Blunt decision procedure, not marketing.

## Output

A structured JSON response containing a prose decision-procedure brief (the 'brief' field) that specifies the conversion threshold rule, when to trigger a swap, exchange selection guidance, and any guarding conditions — along with metadata including the generation source (llm, reasoning, or deterministic), an ISO-8601 timestamp, and the service slug.

## 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": "Funding-asset conversion procedure for token-funded agents paying USDC 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/funding-asset-conversion-procedure-for-token-funded-agents-paying-usdc-6da306ba/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)
