# RONIN Machine Services – Bytes Transform

> RONIN Machine Services – Bytes Transform is a paid API for AI agents from seller.agratys.website, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Transforms byte-level data payloads via a machine agent service endpoint, payable per-call via x402 micropayments on Base USDC

## Facts

- Endpoint: POST https://seller.agratys.website/machine-services/bytes-transform
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ronin-machine-services-bytes-transform-630f0d00
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LuhOoAl1TSf6zihoDXdJK

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 ronin-machine-services-bytes-transform-630f0d00 -d '<json body>'
```

Example prompt: Take this raw byte payload and run it through the RONIN bytes-transform service — I need the normalized output back along with a machine settlement receipt confirming the call was paid.

## When to prefer this

Choose this endpoint when you need a micropayment-gated, deterministic byte-level data transformation with a machine-verifiable settlement receipt, particularly in automated agentic pipelines where per-call payment accountability via x402 on Base USDC is required. Prefer it over free or subscription-based transform services when auditability of each paid call matters.

## Known failure modes

- Insufficient USDC balance or failed x402 payment — endpoint returns payment error
- Malformed or empty input payload — returns schema validation error
- Service unavailability on seller.agratys.website — connection timeout or HTTP 5xx
- Ambiguous input schema (open object) — transformation may fail if required fields are missing
- Settlement receipt not returned — partial payment or node failure on Base network

## How this service works

Autonomous machine agent services payable via x402 on Base USDC. Primary production capability: multi-provider web search routing with deterministic failover, normalized output, and machine receipt (ronin.search-router.v0). Artifact Risk Scan and catalog SKUs remain available.

## Output

Returns a transformed, normalized output object derived from the input byte payload, along with a machine settlement receipt confirming deterministic delivery and x402 payment on Base USDC.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "client_request_id",
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "maxLength": 16384,
       "minLength": 1
      },
      "encoding": {
       "enum": [
        "utf-8",
        "hex",
        "base64"
       ],
       "type": "string"
      },
      "operation": {
       "enum": [
        "sha256",
        "sha512",
        "sha1",
        "blake2b",
        "md5",
        "base64_encode",
        "base64_decode",
        "hex_encode",
        "hex_decode",
        "canonical_json",
        "jwt_decode",
        "utf8_bytes"
       ],
       "type": "string"
      },
      "operations": {
       "type": "array",
       "maxItems": 8
      },
      "client_request_id": {
       "type": "string",
       "maxLength": 128
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "quote_id",
      "delivery_id",
      "delivery",
      "receipt",
      "settlement"
     ],
     "properties": {
      "receipt": {
       "type": "object"
      },
      "delivery": {
       "type": "object",
       "description": "application/json"
      },
      "order_id": {
       "type": "string"
      },
      "quote_id": {
       "type": "string"
      },
      "accounting": {
       "type": "object"
      },
      "settlement": {
       "type": "object"
      },
      "delivery_id": {
       "type": "string"
      },
      "idempotent_replay": {
       "type": "boolean"
      }
     },
     "description": "Paid deterministic delivery plus settlement receipt",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "receipt": {},
  "delivery": {},
  "quote_id": "quoted-at-purchase",
  "settlement": {},
  "delivery_id": "issued-after-settlement"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ronin-machine-services-bytes-transform-630f0d00/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from seller.agratys.website](https://www.zero.xyz/host/seller.agratys.website/llms.txt)
