# Roman Numeral Converter

> Roman Numeral Converter is a paid API for AI agents from sovereign-x402-zeta.vercel.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts a given integer to its Roman numeral string representation

## Facts

- Endpoint: POST https://sovereign-x402-zeta.vercel.app/api/v1/sequence/roman
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roman-numeral-converter-03ab4fed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KTkcgBHuWhpfXKsedcWoZ

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 roman-numeral-converter-03ab4fed -d '<json body>'
```

Example prompt: Convert the number 2024 to its Roman numeral representation.

## When to prefer this

Use this endpoint when you need a quick, paid, on-demand integer-to-Roman-numeral conversion via an HTTP API, especially in agentic workflows where you want a simple single-call service without writing custom conversion logic.

## Known failure modes

- Input integer out of valid Roman numeral range (e.g., 0 or negative numbers) returns an error
- Non-integer or malformed body yields a validation error
- Missing required 'input' field returns a 400 bad request

## How this service works

Convert a given integer to its Roman numeral representation.

## Output

Returns the Roman numeral string representation of the provided integer (e.g., 2024 → MMXXIV).

## 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",
     "properties": {},
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/roman-numeral-converter-03ab4fed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sovereign-x402-zeta.vercel.app](https://www.zero.xyz/host/sovereign-x402-zeta.vercel.app/llms.txt)
