# Caller E2E - x402 Write Endpoint

> Caller E2E - x402 Write Endpoint is a paid API for AI agents from functions.miniup.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Executes an end-to-end HTTP GET call test via the x402 micropayment protocol, returning a success status indicator

## Facts

- Endpoint: GET https://functions.miniup.app/caller-e2e-x402/write
- 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/caller-e2e-x402-write-endpoint-cba2b469
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T2QJue6kxCCYG_zG_7mTD

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 caller-e2e-x402-write-endpoint-cba2b469
```

Example prompt: Run the x402 caller end-to-end write test using a GET request and tell me if it comes back with ok: true.

## When to prefer this

Use this endpoint when you need to verify that the x402 micropayment caller integration is functioning end-to-end, particularly for smoke testing or integration validation of the x402 protocol flow. Prefer this over generic HTTP test endpoints when the specific concern is whether x402-gated payment and caller mechanics work together correctly.

## Known failure modes

- Payment not processed — returns 402 if USDC micropayment fails
- Malformed input schema — missing required 'type' or 'method' fields returns validation error
- Endpoint unreachable — network timeout or 5xx if miniup.app infrastructure is down
- Wrong HTTP method — schema only allows GET; other methods rejected

## How this service works

Caller E2E - x402: 

## Output

Returns a JSON object with an 'ok' boolean field indicating whether the end-to-end x402 HTTP GET call succeeded. A true value confirms the caller and payment flow completed without errors.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/caller-e2e-x402-write-endpoint-cba2b469/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from functions.miniup.app](https://www.zero.xyz/host/functions.miniup.app/llms.txt)
