# minia2a AI Ask

> minia2a AI Ask 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).

Answers a natural language question or prompt using an AI model via a paid GET request

## Facts

- Endpoint: GET https://minia2a.uk/x402/ai-ask
- 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-ai-ask-f31578a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n83N_-pk9fTVppv8bXdjx

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-ai-ask-f31578a0
```

Example prompt: Ask the minia2a AI endpoint: what are the three main causes of inflation, and give me a brief explanation of each?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-use AI question-answering call via the x402 micropayment protocol, especially in agentic workflows where you want to pay only $0.02 per query without subscription overhead. Prefer this over larger AI APIs when you need simple, fast text answers and are already operating within the x402 ecosystem on minia2a.uk.

## Known failure modes

- Missing or malformed 'input' query parameter returns a 400 or error response
- Payment not made or x402 payment challenge not satisfied results in a 402 Payment Required
- Unsupported input type or method values may result in unexpected behavior or errors
- Rate limiting or service unavailability returns a 5xx error
- Very long or complex prompts may be truncated or produce incomplete answers

## How this service works

minia2a service: x402-ai-ask

## Output

Returns an AI-generated text response to the submitted question or prompt, produced by the minia2a AI backend.

## 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-ai-ask-f31578a0/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)
