# minia2a Loan Information Service

> minia2a Loan Information Service is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Retrieves loan-related information or calculations via the minia2a x402 platform

## Facts

- Endpoint: GET https://minia2a.uk/x402/loan
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-loan-information-service-fc22262e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lP1mocJwYxKB97JJmlgOA

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-loan-information-service-fc22262e
```

Example prompt: Can you pull up loan information for me — I want to look up loan terms or calculate details about a loan using the minia2a service?

## When to prefer this

Use this endpoint when you need to retrieve or compute loan-related information within the minia2a x402 ecosystem. Prefer this over general finance APIs when already integrated with the minia2a platform or when using x402 payment protocol for micro-transactions.

## Known failure modes

- Missing required 'input' field returns validation error
- Invalid loan type or query parameters may return empty or error response
- Payment failure (insufficient USDC balance) blocks the request
- Malformed query parameters cause request rejection
- Service unavailability returns HTTP 5xx error

## How this service works

minia2a service: x402-loan

## Output

Returns loan-related data such as terms, rates, eligibility, or calculations depending on the query parameters supplied. The response object contains structured output fields determined by the loan query type.

## 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-loan-information-service-fc22262e/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)
