# minia2a HTTP Analyzer

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

Analyzes an HTTP request structure — including its method, body type, and query parameters — and returns a structured description of that request's characteristics.

## Facts

- Endpoint: GET https://minia2a.uk/x402/http-analyze
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-http-analyzer-28978766
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aPJxlqTlkva4C2OE7NOYa

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-http-analyzer-28978766
```

Example prompt: Can you analyze this HTTP request for me — it's a POST with a JSON body and query params like ?page=1&limit=10 — and tell me what type of request structure it represents?

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call analysis of HTTP request structures — particularly useful in agentic pipelines that need to classify or validate API calls before routing or execution. Prefer this over custom parsing logic when quick, cheap, and hosted HTTP introspection is sufficient.

## Known failure modes

- Missing required 'input' field returns a validation error
- Unrecognized HTTP method or body type may return an ambiguous or partial analysis
- Service may return HTTP 402 if payment is not correctly attached
- Malformed query parameter objects may cause parsing failures

## How this service works

minia2a service: x402-http-analyze

## Output

Returns a structured object describing the HTTP request's characteristics, including the inferred type, method classification, body type, and query parameter breakdown.

## 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-http-analyzer-28978766/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)
