# Delx MiB To Bytes

> Delx MiB To Bytes is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Converts a mebibyte (MiB) integer value to its exact equivalent in bytes

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/mb-to-bytes
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-mib-to-bytes-7bf88ad6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rc5Zju2JLNfdm2jNkaJ7E

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 delx-mib-to-bytes-7bf88ad6 -d '<json body>'
```

Example prompt: What is 256 MiB in exact bytes? I need the precise byte ceiling for our memory allocation limit.

## When to prefer this

Use this endpoint when you need a deterministic, local, first-party conversion of MiB to bytes with no external dependencies, key management, or data retention — ideal for agents enforcing storage or memory ceilings, validating upload limits, or normalizing unit inputs in automated pipelines. Prefer it over manual arithmetic when auditability or consistency across agent steps is required.

## Known failure modes

- Non-integer or missing mib field returns a validation error
- Negative or zero values may return an error or unexpected result
- Network timeout or payment failure via x402 prevents response
- Very large integer values may cause overflow depending on implementation

## How this service works

Convert mebibytes to bytes. Call when you expand MiB limits into exact byte ceilings. Returns bytes and mib for $0.001 USDC via x402 on Base. No network, no keys, no retention; first-party local JSON only. Results are advisory; the caller owns budgets, auth, and production controls.

## Output

Returns a JSON object with the input mib value and the computed bytes equivalent (1 MiB = 1,048,576 bytes), providing an exact integer byte count for the given mebibyte input.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mib": {
   "type": "integer",
   "description": "Input field: mib."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mib": 1,
  "bytes": 1048576,
  "schema": "delx/util-mb-to-bytes/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-mib-to-bytes-7bf88ad6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
