# minia2a Data Enrich

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

Enriches structured data objects by augmenting input parameters with additional metadata and context

## Facts

- Endpoint: GET https://minia2a.uk/x402/data-enrich
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-data-enrich-0338ab12
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LoO4lzzkEDZ-zzyRRN8bC

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-data-enrich-0338ab12
```

Example prompt: Can you enrich this data object for me — it's a GET request with JSON query params like {userId: '123', region: 'us-west'} and I need the output as an enriched object with additional metadata filled in?

## When to prefer this

Choose this endpoint when you need to augment a structured data object with additional metadata in a lightweight, pay-per-call manner without standing up your own enrichment pipeline. Useful for agents processing API request metadata, webhook payloads, or query parameter sets that need contextual enrichment on the fly.

## Known failure modes

- Missing required 'input' field returns a validation error
- Malformed queryParams object may result in incomplete enrichment
- Unknown or unsupported 'type' or 'method' values may produce partial output
- Payment failure via x402 protocol blocks the call entirely
- Empty input object may return a minimal or empty output

## How this service works

minia2a service: x402-data-enrich

## Output

Returns an enriched version of the input data object, with additional metadata and context appended to the original fields based on the provided type, method, body type, and query parameters.

## 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-data-enrich-0338ab12/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)
