# OpenWeb Ninja Copilot AI Chat (x402)

> OpenWeb Ninja Copilot AI Chat (x402) is a paid API for AI agents from x402.openwebninja.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Sends a message to Microsoft Copilot (with optional CHAT, REASONING, or GPT-5/SMART mode) and returns a conversational AI response, payable per-call via x402 with no API key required.

## Facts

- Endpoint: POST https://x402.openwebninja.com/ai-answers/copilot/copilot
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/openweb-ninja-copilot-ai-chat-x402-eb29bc28
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W-wAErWhL_1ngJ7JBvXIA

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 openweb-ninja-copilot-ai-chat-x402-eb29bc28 -d '<json body>'
```

Example prompt: Ask Copilot in REASONING mode: 'What are the main differences between supervised and unsupervised machine learning?' and return the answer in markdown format.

## When to prefer this

Choose this endpoint when you need to access Microsoft Copilot (including REASONING or GPT-5/SMART modes) on a per-call basis without setting up an API key or account — ideal for agents making occasional AI queries with USDC micropayments via x402, or when you specifically want Copilot's Bing-grounded responses rather than a raw OpenAI API call.

## Known failure modes

- Payment failure if x402 USDC transaction is not completed or insufficient balance
- Invalid or expired conversation_id causing loss of conversation context
- Unsupported mode value causing a bad request error
- Empty or missing message field resulting in an error response
- Rate limiting or upstream Copilot service unavailability causing 5xx errors
- Malformed response if Copilot service is temporarily degraded

## How this service works

40+ public web-data, SERP, e-commerce, real-estate, finance and AI-search APIs, payable per call over x402 (USDC on Base, Polygon, Arbitrum). No account or API key required. Most endpoints $0.003; AI-model endpoints $0.005.

## Output

A JSON object containing the AI-generated text reply from Microsoft Copilot (in plain text or markdown depending on the 'markdown' flag), along with a conversation_id that can be used to continue the same conversation thread in subsequent calls.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mode": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Use normal chat mode (i.e. CHAT), reasoning mode (i.e. REASONING), or GPT-5 (SMART)."
  },
  "message": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Message to send to Copilot."
  },
  "markdown": {
   "type": "array",
   "items": {
    "type": "boolean"
   },
   "description": "Whether to return the Copilot response message in markdown format. By default, the bot reply is in plain text."
  },
  "conversation_id": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Conversation id. In case not supplied, a new conversation will be created and conversation_id will be returned by the endpoint."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/openweb-ninja-copilot-ai-chat-x402-eb29bc28/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.openwebninja.com](https://www.zero.xyz/host/x402.openwebninja.com/llms.txt)
