# Orbuis Pay-Per-Call Text Tools (Ping/Health Check)

> Orbuis Pay-Per-Call Text Tools (Ping/Health Check) is a paid API for AI agents from agents.orbuis.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-17).

Returns a payment-confirmation ping response verifying that the x402 micropayment was accepted and the Orbuis text-tools service is reachable, costing $0.001 USDC per call.

## Facts

- Endpoint: GET https://agents.orbuis.com/payments/x402/ping
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-17
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbuis-pay-per-call-text-tools-ping-health-check-4de424b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p2279StBFti3zTClsfhFu

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 orbuis-pay-per-call-text-tools-ping-health-check-4de424b8
```

Example prompt: Ping the Orbuis text tools service to confirm it's up and that my x402 USDC payment on Base was accepted — I just want to verify the connection is working before I send real jobs.

## When to prefer this

Use this endpoint to verify end-to-end connectivity and x402 payment acceptance for the Orbuis text tools service before dispatching actual text workloads (summarize, extract JSON, ask). It is the lowest-cost way ($0.001 USDC) to confirm the payment pipeline and API are functional without consuming a meaningful text operation. Prefer it for health checks, wallet setup validation, or monitoring pipelines.

## Known failure modes

- Payment not included or malformed x402 header — service returns 402 Payment Required
- Insufficient USDC balance — payment rejected before response is returned
- Network timeout reaching agents.orbuis.com
- Invalid payment network (not Base or Arc) — payment may be declined
- Service downtime — no response or 5xx error returned

## How this service works

Text tools for AI agents, answered by Orbuis's own on-device model and sold per call over x402. No account or API key. Tools: Summarize text, Extract structured JSON, Ask. Pay in USDC on Base or Arc.

## Output

A JSON object with fields: 'ok' (boolean, true if service is healthy), 'paid' (boolean, true if the x402 USDC payment was accepted), 'message' (human-readable confirmation string), 'at' (ISO 8601 timestamp of the response), and 'service' (string identifying the provider as 'orbuis').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "at": "2026-09-16T12:00:00.000Z",
  "ok": true,
  "paid": true,
  "message": "Payment accepted — this response cost $0.001 USDC.",
  "service": "orbuis"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbuis-pay-per-call-text-tools-ping-health-check-4de424b8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.orbuis.com](https://www.zero.xyz/host/agents.orbuis.com/llms.txt)
