# momoAI Search — Pay-per-Call LLM Query Endpoint

> momoAI Search — Pay-per-Call LLM Query Endpoint is a paid API for AI agents from momoai-cyan.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Accepts a natural language search query and returns an AI-generated answer, powered by a pay-per-use LLM backend with USDC micropayment on Base.

## Facts

- Endpoint: POST https://momoai-cyan.vercel.app/api/search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/momoai-search-pay-per-call-llm-query-endpoint-7f2d09aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7D-zmn_DZ0dDRIOumqOTg

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 momoai-search-pay-per-call-llm-query-endpoint-7f2d09aa -d '<json body>'
```

Example prompt: Search momoAI for: 'What are the main differences between transformer and diffusion model architectures?' and pay the $0.02 per-call fee with USDC on Base.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call LLM query without a subscription, especially when operating an autonomous agent that can pay micropayments in USDC on Base via x402. Ideal for sporadic queries where a flat subscription is wasteful, or when integrating AI search into a crypto-native workflow.

## Known failure modes

- Payment not received or insufficient USDC balance — 402 Payment Required response
- Missing required 'query' field in request body — 400 Bad Request
- LLM backend unavailable or timeout — 500 Internal Server Error
- Malformed JSON body — 400 Bad Request
- Rate limit exceeded — 429 Too Many Requests

## How this service works

Pay-per-use LLM API. Chat, reasoning, code review, translation, summarization, data extraction, and more. Pay with USDC on Base.

## Output

Returns a JSON object with a 'data' field containing the AI-generated answer string, the model used, the original query, and token usage statistics, plus a 'success' boolean and metadata object.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Search query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "model": {
     "type": "string"
    },
    "query": {
     "type": "string"
    },
    "usage": {
     "type": "object"
    },
    "answer": {
     "type": "string"
    }
   }
  },
  "meta": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/momoai-search-pay-per-call-llm-query-endpoint-7f2d09aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from momoai-cyan.vercel.app](https://www.zero.xyz/host/momoai-cyan.vercel.app/llms.txt)
