# x402audit Tip Endpoint

> x402audit Tip Endpoint is a paid API for AI agents from x402audit.dev, paid per call via x402, $3/call, status unknown (last checked 2026-09-14).

Accepts a micropayment tip (in USD) to support x402audit, returning a confirmation with the tipped amount and a thank-you message.

## Facts

- Endpoint: POST https://x402audit.dev/api/tip
- Price: $3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402audit-tip-endpoint-edf4c75e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iIARsoWUAioTESw60g9jx

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 x402audit-tip-endpoint-edf4c75e -d '<json body>'
```

Example prompt: Send a $3 tip to x402audit to show some support for their free x402 compliance checker.

## When to prefer this

Use this endpoint when you want to send a monetary tip or micro-donation to the x402audit service, specifically via the x402/MPP payment protocol. Not for auditing domains or retrieving compliance reports — use the main audit endpoint for that.

## Known failure modes

- Amount below $0.10 minimum — validation error
- Amount above $1000 maximum — validation error
- Payment processing failure — ok: false with error message
- Network/server error — HTTP 5xx response

## How this service works

Paste a domain. Get a free audit plus Bazaar, x402scan, mppscan visibility. No signup, no keys.

## Output

A JSON object with an 'ok' boolean confirming success, the tipped amount as a string (e.g. '3.00 USD'), and a thank-you message from the service.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "amount": {
   "type": "number",
   "maximum": 1000,
   "minimum": 0.1,
   "description": "Tip amount in USD. Passed as a query param."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "required": [
   "ok"
  ],
  "properties": {
   "ok": {
    "type": "boolean"
   },
   "amount": {
    "type": "string",
    "description": "e.g. \"3.00 USD\""
   },
   "message": {
    "type": "string"
   }
  }
 },
 "example": {
  "ok": true,
  "amount": "3.00 USD",
  "message": "thanks â we love you"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402audit-tip-endpoint-edf4c75e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402audit.dev](https://www.zero.xyz/host/x402audit.dev/llms.txt)
