# skill-audit LLM Web Answer API

> skill-audit LLM Web Answer API is a paid API for AI agents from eltociear-skill-audit.hf.space, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Answers questions by searching the live web and synthesizing results using an LLM, returning a cited answer with sources

## Facts

- Endpoint: POST https://eltociear-skill-audit.hf.space/llm/answer
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/skill-audit-llm-web-answer-api-db9a15d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WZKLtHlB7i4jEa3zIuwpv

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 skill-audit-llm-web-answer-api-db9a15d3 -d '<json body>'
```

Example prompt: Search the live web and tell me what the x402 payment-required header contains — I need a concise answer with sources, keep it under 500 tokens and read up to 4 pages.

## When to prefer this

Choose this endpoint when you need a grounded, cited answer synthesized from live web content rather than the model's training data — especially for current events, recent specifications, or fast-changing facts. Prefer it over static knowledge bases when freshness matters and over raw search APIs when you need a coherent natural-language summary rather than a ranked list of raw snippets.

## Known failure modes

- Query returns no relevant web results — answer may be empty or low quality
- max_sources set too low (1-2) for complex topics leading to incomplete answers
- Rate limiting or payment failure via x402 micropayment protocol returning 402
- Live web pages are unavailable or blocked, reducing source quality
- max_tokens too low truncates the answer mid-sentence

## How this service works

Detect malicious patterns in AI agent skills/plugins. x402 v2 micropayments on Base.

## Output

A JSON object containing a synthesized natural-language answer to the query, the search engine used (DuckDuckGo), the LLM provider, and a list of numbered source objects each with a URL and title that are inline-cited in the answer text.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string",
   "description": "Question to answer from the live web"
  },
  "max_tokens": {
   "type": "integer",
   "description": "Answer length cap (default 700)"
  },
  "max_sources": {
   "type": "integer",
   "description": "1-8 pages to read (default 4)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query": "What does the x402 payment-required header contain?",
  "answer": "It carries the accepted payment options, each with scheme, network, amount and payTo address [1], plus the x402 protocol version [2].",
  "engine": "duckduckgo",
  "sources": [
   {
    "n": 1,
    "url": "https://example.com/spec",
    "title": "x402 spec"
   },
   {
    "n": 2,
    "url": "https://example.com/docs",
    "title": "x402 docs"
   }
  ],
  "provider": "llm7"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/skill-audit-llm-web-answer-api-db9a15d3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-skill-audit.hf.space](https://www.zero.xyz/host/eltociear-skill-audit.hf.space/llms.txt)
