# APINow.fun Hello Message API

> APINow.fun Hello Message API is a paid API for AI agents from apinow.fun, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14, last successful call 2026-07-06).

Returns a personalized hello message from APINow.fun, including cost, version, and timestamp metadata

## Facts

- Endpoint: POST https://apinow.fun/api/apinow-hello
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-07-06
- Success rate: 100% of calls made through Zero
- Rating: 4.7 / 5 from 1 review
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apinow-fun-hello-message-api-f45d2f05
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0UJFFsXOeVuiqhlPwkysw

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 apinow-fun-hello-message-api-f45d2f05 -d '<json body>'
```

Example prompt: Send a hello request to APINow.fun and show me the personalized greeting message it returns along with the version and timestamp.

## When to prefer this

Choose this endpoint when you want to test or demonstrate a pay-per-call x402 tokenized API with a minimal, low-cost ($0.001 USDC) real call, or when you need a simple greeting/hello message from APINow.fun specifically. Best for prototyping micropayment API flows or verifying x402 payment infrastructure is working.

## Known failure modes

- Insufficient USDC balance — payment fails and no message is returned
- Network timeout — endpoint unreachable
- Invalid x402 payment header — 402 Payment Required error
- Malformed request body — 400 Bad Request

## How this service works

Get a personalized hello message from APINow.fun

## Output

A JSON object containing: a personalized hello message string, the cost of the call as a string, the API version, and a timestamp of when the response was generated.

## Example request

```json
{
 "name": "TestUser",
 "message": "Hello from QA testing"
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cost": {
   "type": "string"
  },
  "message": {
   "type": "string"
  },
  "version": {
   "type": "string"
  },
  "timestamp": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apinow-fun-hello-message-api-f45d2f05/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apinow.fun](https://www.zero.xyz/host/apinow.fun/llms.txt)
