# SqueezeOS Utility Computation Credit Pack

> SqueezeOS Utility Computation Credit Pack is a paid API for AI agents from squeezeos-api.onrender.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Purchases a pack of 10 prepaid utility computation credits (SML deterministic calls) via x402 micropayment settlement.

## Facts

- Endpoint: GET https://squeezeos-api.onrender.com/api/utility/credits
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/squeezeos-utility-computation-credit-pack-a1fd77a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u4GwCkvC-A6RsYosfzdJ5

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 squeezeos-utility-computation-credit-pack-a1fd77a0
```

Example prompt: Buy me a pack of 10 SqueezeOS utility computation credits so I have prepaid credits ready for deterministic SML API calls.

## When to prefer this

Choose this endpoint when an AI agent needs to prepurchase deterministic utility computation credits on the SqueezeOS platform using x402 micropayment settlement. It is the correct endpoint when the goal is budget provisioning rather than executing a specific computation call directly.

## Known failure modes

- Insufficient USDC balance for the $0.005 per-call payment
- x402 payment settlement failure or timeout
- Invalid or missing pack parameter (must be '10')
- Service unavailable on Render hosting platform
- Credit allocation failure if backend computation ledger is unreachable

## How this service works

Utility computation credit pack API — buy 10 SML deterministic utility calls through canonical x402 settlement.

## Output

Returns a JSON object confirming the purchase of a 10-credit utility computation pack, likely including credit balance, pack details, and payment confirmation via x402 settlement.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "pack": {
       "enum": [
        "10"
       ],
       "type": "string",
       "description": "Fixed utility credit pack size Search intents: utility api credits, agent compute credits, x402 utility pack."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/squeezeos-utility-computation-credit-pack-a1fd77a0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from squeezeos-api.onrender.com](https://www.zero.xyz/host/squeezeos-api.onrender.com/llms.txt)
