# NetIntel Exa Answer — Live Web Q&A with Citations

> NetIntel Exa Answer — Live Web Q&A with Citations is a paid API for AI agents from netintel.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Answers a natural language question by performing a live web search, synthesizing a direct answer, and returning numbered citations with title, URL, and published date.

## Facts

- Endpoint: GET https://netintel.dev/exa/answer
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-exa-answer-live-web-q-a-with-citations-c37dea78
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HRj6iS0ImsotQhRv8m4pk

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 netintel-exa-answer-live-web-q-a-with-citations-c37dea78
```

Example prompt: What are the latest developments in quantum computing breakthroughs — get me a direct answer with sources cited from the live web.

## When to prefer this

Choose this endpoint when you need a single synthesized answer grounded in live web data, with citations, in one call — replacing a manual search + read + summarize pipeline. Prefer it over /exa/search when you want a direct answer rather than a ranked list of URLs. Ideal for factual Q&A, research briefings, real-time fact-checking, and any task where provenance (source URLs and dates) matters. Best when the question is well-formed and specific enough to produce a meaningful synthesis.

## Known failure modes

- Missing or empty `query` parameter returns a validation error
- Query shorter than 3 or longer than 1000 characters is rejected
- Payment not included or insufficient funds results in HTTP 402 response requiring x402 payment
- No relevant web results found may return a low-confidence or empty answer
- Rate limiting or upstream Exa API unavailability causes service errors
- `include_citation_text` flag with more than 5 citations returns truncated text at 800 chars per source

## How this service works

Ask a question, get a direct answer grounded in a live web search, with numbered citations (title, url, published_date). One call replaces search + read + summarize. For ranked results instead of a synthesized answer use /exa/search. Keyless x402, pay per call on Base or Solana.

## Output

A JSON object containing the original query, a synthesized prose answer with inline citation markers (e.g. [1][2]), an array of citation objects (each with index, title, URL, author, published_date, and optional source text), the citation count, and the provider name (exa). The answer integrates information from multiple live web sources into a single coherent response.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string",
       "description": "Question, 3-1000 chars. Aliases: q, question, prompt, text"
      },
      "include_citation_text": {
       "type": "boolean",
       "description": "Include each citation's source text (default false); truncated to 800 chars when >5 citations. Aliases: text, with_text"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "query": {
       "type": "string"
      },
      "answer": {
       "type": "string"
      },
      "findings": {
       "type": "array"
      },
      "provider": {
       "type": "string"
      },
      "citations": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "url": {
          "type": "string"
         },
         "text": {
          "type": [
           "string",
           "null"
          ]
         },
         "index": {
          "type": "number"
         },
         "title": {
          "type": [
           "string",
           "null"
          ]
         },
         "author": {
          "type": [
           "string",
           "null"
          ]
         },
         "published_date": {
          "type": [
           "string",
           "null"
          ]
         }
        }
       }
      },
      "citation_count": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "query": "What is the x402 payment protocol?",
  "answer": "x402 is an open standard that uses the HTTP 402 status code to let clients pay for resources with stablecoins… [1][2]",
  "findings": [],
  "provider": "exa",
  "citations": [
   {
    "url": "https://www.x402.org/",
    "text": null,
    "index": 1,
    "title": "x402 — internet-native payments",
    "author": null,
    "published_date": null
   }
  ],
  "citation_count": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-exa-answer-live-web-q-a-with-citations-c37dea78/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel.dev](https://www.zero.xyz/host/netintel.dev/llms.txt)
