# minia2a Text-to-JSON Converter

> minia2a Text-to-JSON Converter is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Converts plain text input into structured JSON output using AI parsing

## Facts

- Endpoint: GET https://minia2a.uk/x402/text-to-json
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-text-to-json-converter-1a68755c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__fiYMSQNLoDwyjQ9E6HHG

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-text-to-json-converter-1a68755c
```

Example prompt: Can you convert this plain text into structured JSON for me: 'Order #1234, customer John Smith, 3 items, total $45.99, shipped to New York'?

## When to prefer this

Choose this endpoint when you need to quickly convert unstructured or semi-structured plain text into machine-readable JSON without setting up a full NLP pipeline. It is pay-per-call via x402 so ideal for low-volume or one-off conversions. Best for agents that receive freeform text input and need to feed downstream systems that require structured JSON.

## Known failure modes

- Missing required 'input' field returns an error
- Ambiguous or too-short text may produce incomplete JSON
- Malformed query parameters may cause parsing errors
- Payment failure via x402 protocol blocks the request
- Unsupported input types may return unexpected output structure

## How this service works

minia2a service: x402-text-to-json

## Output

A structured JSON object derived from the input text, with fields extracted and organized based on the content. The output type can be guided via the output schema parameter.

## 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-text-to-json-converter-1a68755c/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)
