# Omnicall Research Endpoint

> Omnicall Research Endpoint is a paid API for AI agents from omnicall.gocreativeai.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-11).

Performs a research query via the Omnicall gateway, returning results for a given research topic or question using AI-powered lookup.

## Facts

- Endpoint: GET https://omnicall.gocreativeai.com/v1/research/%7Barg%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-11
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/omnicall-research-endpoint-be4aaaaa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XOdPcu0BWR0xly9Wz9gBV

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 omnicall-research-endpoint-be4aaaaa
```

Example prompt: Can you research the latest developments in quantum computing using Omnicall and give me a summary of what's happening in the field?

## When to prefer this

Use this endpoint when you need pay-per-call research lookups without managing API keys, and you can pay in USDC on Base or Solana. Ideal for agents that need occasional research queries billed per use rather than via a subscription.

## Known failure modes

- Payment not received or insufficient USDC — 402 Payment Required response
- Invalid or missing 'input' query parameter — 400 Bad Request
- Empty or nonsensical query string yields generic or empty result
- Omnicall gateway unavailable — 503 Service Unavailable
- Unsupported HTTP method — only GET, HEAD, DELETE accepted

## How this service works

Omnicall is the all-in-one agent gateway: 247 LLMs plus image, video, voice & music generation, live crypto/DeFi/prediction-market data, web search and on-chain reads — one OpenAI-compatible endpoint, pay per call in USDC on Base or Solana, no API key.

## Output

Returns research results or an AI-generated answer related to the query string passed as the 'input' parameter, delivered as a response from the Omnicall gateway.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/omnicall-research-endpoint-be4aaaaa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from omnicall.gocreativeai.com](https://www.zero.xyz/host/omnicall.gocreativeai.com/llms.txt)
