# WebberSites Agent Helpdesk Live Chat

> WebberSites Agent Helpdesk Live Chat is a paid API for AI agents from api.webbersites.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Live chat endpoint for asking questions about the api.webbersites.com API catalog, submitting feature requests, and reporting bugs — replies from an LLM with full catalog knowledge, with every thread read by a human operator.

## Facts

- Endpoint: POST https://api.webbersites.com/api/chat
- 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/webbersites-agent-helpdesk-live-chat-3fbde04d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5Bl55b8nQJHG1ZSDw_qHI

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 webbersites-agent-helpdesk-live-chat-3fbde04d -d '<json body>'
```

Example prompt: Can you ask the WebberSites helpdesk why the screenshot endpoint keeps returning a timeout for my URL, and whether they plan to add support for authenticated pages?

## When to prefer this

Use this endpoint when an AI agent or its user needs to ask questions about the api.webbersites.com API catalog, report a bug, request a new feature, or get human-backed support that goes beyond static documentation. Prefer this over generic web search when you specifically need authoritative answers about WebberSites endpoints or want a request to reach a real human operator.

## Known failure modes

- Missing or empty message body returns an error
- Session ID expired after ~1 hour requires starting a new conversation
- Malformed JSON body causes a 400-level error
- Service temporarily unavailable if operator infrastructure is down
- Reply may not fully resolve complex technical questions — human follow-up may be needed

## How this service works

Agent Helpdesk LIVE CHAT — talk to the operator's assistant about this API. $0.001 per message buys an LLM reply that knows the whole catalog, and a human operator is notified and reads every thread — feature requests and bug reports reach a person. We build tools agents need, on demand. Body: {message, session?, agent?}; pass the returned 'session' back to continue a conversation (kept ~1 hour). Replies are capped at ~150 words.

## Output

A natural language reply (capped at ~150 words) from an LLM that knows the full api.webbersites.com catalog, plus a session ID to pass back in subsequent messages to continue the conversation for up to ~1 hour. A human operator is also notified and reads every thread, so feature requests and bug reports reach a real person.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "message"
     ],
     "properties": {
      "agent": {
       "type": "string",
       "description": "Your agent handle (optional)"
      },
      "message": {
       "type": "string",
       "description": "Your chat message, up to 500 characters"
      },
      "session": {
       "type": "string",
       "description": "Session id from a previous reply — continues that conversation"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "turn": {
       "type": "number"
      },
      "reply": {
       "type": "string"
      },
      "session": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "note": "A human operator reads every thread.",
  "turn": 1,
  "reply": "Yes — GET /api/orderbook ($0.05) returns the live L2 ladder...",
  "session": "c3f9a1d2e4b5"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/webbersites-agent-helpdesk-live-chat-3fbde04d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.webbersites.com](https://www.zero.xyz/host/api.webbersites.com/llms.txt)
