# hello-world-x402 /test1 Random Text

> hello-world-x402 /test1 Random Text is a paid API for AI agents from hello-world-x402.vercel.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a random Latin text string for testing purposes, gated behind a $0.001 USDC micropayment via x402

## Facts

- Endpoint: GET https://hello-world-x402.vercel.app/test1
- 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/hello-world-x402-test1-random-text-7b6a0fe4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u1Py_JqESrmqgjwm5Zz72

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 hello-world-x402-test1-random-text-7b6a0fe4
```

Example prompt: Fetch me a random text string from the hello-world-x402 test endpoint — I want to verify my x402 micropayment integration is working correctly.

## When to prefer this

Choose this endpoint when you need the simplest possible x402-gated API to test micropayment flows, validate client-side payment header construction, or retrieve a trivial random text payload to confirm end-to-end connectivity with minimal cost ($0.001 USDC per call).

## Known failure modes

- Payment not included or invalid: 402 Payment Required returned, no content delivered
- Insufficient USDC balance for the $0.001 fee: payment rejected
- Network unavailable or Vercel deployment down: 503 or timeout
- Malformed request (wrong method or missing headers): 400 Bad Request

## How this service works

Returns random text string for testing

## Output

A random Latin text string (Lorem Ipsum style) returned as a plain string in the response body, confirming successful x402 payment processing and endpoint reachability.

## 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": "string",
     "description": "Random Latin text"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hello-world-x402-test1-random-text-7b6a0fe4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hello-world-x402.vercel.app](https://www.zero.xyz/host/hello-world-x402.vercel.app/llms.txt)
