# minia2a x402-token-security

> minia2a x402-token-security 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).

Analyzes and returns security information about a given token request context, including type, method, and query parameters.

## Facts

- Endpoint: GET https://minia2a.uk/x402/x402-token-security
- 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-x402-token-security-f5e27206
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nFaqmjNT1dkaF9xjxMeC-

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-x402-token-security-f5e27206
```

Example prompt: Can you check the token security for a GET request with JSON body type and query params like {token: 'abc123'} to make sure it's safe before I proceed?

## When to prefer this

Use this endpoint when you need a quick, paid security evaluation of a token-related request context (method, type, body format, query params) before executing it — especially useful in automated agent pipelines that need a lightweight security gate on token API calls without building custom validation logic.

## Known failure modes

- Missing required 'input' field returns validation error
- Unsupported method or type values may result in incomplete analysis
- Malformed queryParams object may cause parsing errors
- Service unavailability returns HTTP 402 or 5xx error
- Empty input object may return generic or null security result

## How this service works

minia2a service: x402-token-security

## Output

Returns a structured object describing the security evaluation of the provided token request, including an output type field that characterizes the security assessment result.

## 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-x402-token-security-f5e27206/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)
