# LION Research Agent

> LION Research Agent is a paid API for AI agents from lion-research-agent.lionmaster-operations.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Performs deep research on a given topic and returns structured insights including a summary, key findings, cited sources, and a confidence score.

## Facts

- Endpoint: POST https://lion-research-agent.lionmaster-operations.workers.dev/research
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lion-research-agent-7e6418ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LLfgQ3qEijAPm_WKN1WUo

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 lion-research-agent-7e6418ac -d '<json body>'
```

Example prompt: Can you do a deep research on the current state of quantum computing hardware and give me a structured breakdown with key findings, sources, and how confident you are in the results?

## When to prefer this

Choose this endpoint when you need structured, citation-backed research output with an explicit confidence rating — particularly useful for agent pipelines that need to reason about result reliability or pass findings downstream in a structured format rather than raw web search results.

## Known failure modes

- Missing required 'query' field returns a 400 or validation error
- Vague or ambiguous query may produce low confidence score
- External sources unavailable may reduce source count and lower confidence
- Payment not provided or insufficient USDC may result in 402 payment required error
- Network timeout if underlying research process takes too long

## How this service works

Deep research agent that returns structured insights with summary, key findings, sources and confidence.

## Output

Returns a JSON object with a prose summary of the topic, an array of key findings, an array of source URLs or references, a confidence score (0-1) reflecting result reliability, and a last_updated timestamp.

## Example request

```json
{
 "query": "artificial intelligence applications in healthcare"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "The research topic or question"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sources": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "summary": {
   "type": "string"
  },
  "confidence": {
   "type": "number"
  },
  "key_findings": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "last_updated": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lion-research-agent-7e6418ac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lion-research-agent.lionmaster-operations.workers.dev](https://www.zero.xyz/host/lion-research-agent.lionmaster-operations.workers.dev/llms.txt)
