# minia2a Is-Octal Checker

> minia2a Is-Octal Checker is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Checks whether a given string or number represents a valid octal (base-8) value

## Facts

- Endpoint: GET https://minia2a.uk/x402/is-octal
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-is-octal-checker-168ba14a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xc8n0PBiMX7tnocYUp5Ar

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 minia2a-is-octal-checker-168ba14a
```

Example prompt: Can you check if the string '0755' is a valid octal number?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call API to validate whether a string represents a valid octal (base-8) number — especially useful in agent pipelines handling file permissions, low-level encoding, or user input validation where octal format matters.

## Known failure modes

- Missing required 'input' field returns an error
- Malformed request schema causes a 400-level response
- Empty string input may return false or an error
- Non-string types passed as input may cause unexpected results

## How this service works

minia2a service: x402-is-octal

## Output

Returns a boolean or flag indicating whether the provided input is a valid octal (base-8) number, allowing the agent to confirm or deny the octal nature of a given string or numeric value.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-is-octal-checker-168ba14a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
